上一页 1 ··· 41 42 43 44 45 46 47 48 49 ··· 51 下一页
摘要: 1.国内如何快速访问gibhub -FQ的方法无非就是用软件,这种就不介绍了 -本次介绍的是修改本地系统主机hosts文件,绕过国内dns解析,达到快速访问github 打开https://tool.chinaz.com/dns/网站,查询下列三个地址的ip 1.github.com 2.asset 阅读全文
posted @ 2020-07-07 07:35 我在路上回头看 阅读(24783) 评论(6) 推荐(6)
摘要: Jquery入门 支持链式操作 $('.c1').addClass('c2').text('xxx').addClass('xxx').css({'color':'white'}); jquery引入方式 外部网址引入 <!--<script src="https://cdn.bootcss.com 阅读全文
posted @ 2020-07-07 05:17 我在路上回头看 阅读(134) 评论(0) 推荐(0)
摘要: HTML基础 html文件结构 <!DOCTYPE html> 文档类型声明 <html lang="en"></html> 是html标签,称之为根标签,一个html文件,有且只有一个根标签 head标签 html文档头标签,用来对文档的内容进行描述 meta标签,告诉浏览器以哪种编码方式打开这个 阅读全文
posted @ 2020-07-06 14:48 我在路上回头看 阅读(140) 评论(0) 推荐(0)
摘要: 1.head标签 <!DOCTYPE html> <!--文档声明H5 html--> <html lang="en"> <head> <meta charset="UTF-8"> <!--标签属性--> <title>30期皇家赌场</title> <!--浏览器标题--> </head> <bo 阅读全文
posted @ 2020-06-29 00:52 我在路上回头看 阅读(99) 评论(0) 推荐(0)
摘要: # ### part1 索引树高度 # 1.表的数据量 数据量越大,树的高度就会变高,理论上三层索引树的高度最为理想,可以支持百万级别的数据量 解决:可以使用分表(横切,竖切),分库,增加缓存,解决数据量大,查询慢 # 2.索引键值过长 该索引字段存储数据太大,每个叶子节点最大存储16k,超过这个范 阅读全文
posted @ 2020-06-28 08:18 我在路上回头看 阅读(206) 评论(0) 推荐(0)
摘要: 1.创建视图 语法:create view 视图名 as 查询语句 实例: -- 以上节课的关联查询为例 create view v_user_score as select a.id, a.name, b.math, b.english from student a inner join scor 阅读全文
posted @ 2020-06-23 20:24 我在路上回头看 阅读(143) 评论(0) 推荐(0)
摘要: # 准备 #1. 准备表 create table s1( id int, name varchar(20), gender char(6), email varchar(50), first_name char(10), last_name char(10) ); #2. 创建存储过程,实现批量插 阅读全文
posted @ 2020-06-23 19:53 我在路上回头看 阅读(1593) 评论(0) 推荐(1)
摘要: # 1、查询所有的课程的名称以及对应的任课老师姓名 #where select teacher.tname,course.cname from teacher,course where course.teacher_id = teacher.tid #内联写法 select teacher.tnam 阅读全文
posted @ 2020-06-23 19:38 我在路上回头看 阅读(190) 评论(0) 推荐(0)
摘要: # ###part1: sql语句优化 #(1) mysql 执行流程 客户端: 发送连接请求,然后发送增删改查sql语句进行执行 服务端: 1.连接层:提供和客户端连接的服务,在tcp协议下 提供多线程并发的技术,让多个用户登录到mysql中 show processlist; 查看所有登录到my 阅读全文
posted @ 2020-06-23 19:35 我在路上回头看 阅读(156) 评论(0) 推荐(0)
摘要: 1.pymysql基本语法 # ### python操作mysql import pymysql ''' # ### 1.基本语法 #(1) 创建连接 host user password database 四个参数必写 conn = pymysql.connect(host='127.0.0.1' 阅读全文
posted @ 2020-06-21 23:22 我在路上回头看 阅读(320) 评论(0) 推荐(0)
上一页 1 ··· 41 42 43 44 45 46 47 48 49 ··· 51 下一页