上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 27 下一页
摘要: 增删改查补充: 增: 删和改: 查: 其他: limit:(具有分页的功能) 分页: 阅读全文
posted @ 2019-02-14 14:16 莱茵河的雨季 阅读(213) 评论(0) 推荐(0) 编辑
摘要: 唯一索引:(unique关键字)unique 名字 (num) 外键的变种: 阅读全文
posted @ 2019-02-14 10:32 莱茵河的雨季 阅读(163) 评论(0) 推荐(0) 编辑
摘要: 对于自增: 1,查看字段,类型以及是否可以为空,默认值:desc t2; 2,查看表t2是怎么创建的show create table t2; (竖着看)查看表t2是怎么创建的show create table t2 \G; 3,修改自增:alter table t10 AUTO_INCREMENT 阅读全文
posted @ 2019-02-13 19:44 莱茵河的雨季 阅读(509) 评论(0) 推荐(0) 编辑
摘要: 主键只有一个,但是可以用两列不为空的值组成: 阅读全文
posted @ 2019-02-13 16:45 莱茵河的雨季 阅读(187) 评论(0) 推荐(0) 编辑
摘要: 什么是外键? 外键的创建:constraint 外键名 foregin key ("表1值1",“ 表1值2”) references 表2的名字(“值1”) 阅读全文
posted @ 2019-02-13 15:42 莱茵河的雨季 阅读(381) 评论(0) 推荐(0) 编辑
摘要: sql语法规则: 一、操作文件夹 1、创建数据库db2:create database db2; 2、创建数据库db2并标明数据库的编码格式为utf8:create database db2 default charset=utf8; >为了插入中文 3、展示所有文件夹(数据库):show data 阅读全文
posted @ 2019-02-12 18:06 莱茵河的雨季 阅读(161) 评论(0) 推荐(0) 编辑
摘要: 1,打开mysql数据库命令:mysql -u root -p 2,创建数据库create database db2; 2,删除数据库drop database db2; 2,展示有多少个文件夹:show databases; 3,进入文件即使用文件mysql:use mysql; 4,展示有多少个 阅读全文
posted @ 2019-02-06 13:45 莱茵河的雨季 阅读(690) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2019-02-06 12:43 莱茵河的雨季 阅读(145) 评论(0) 推荐(0) 编辑
摘要: http://www.w3school.com.cn/sql/sql_functions.asp 阅读全文
posted @ 2019-02-02 11:06 莱茵河的雨季 阅读(121) 评论(0) 推荐(0) 编辑
摘要: 1,线程池代码示例:(注:进程池的话只要将以下代码中的ThreadPoolExecutor替换成ProcessPoolExecutor即可,这里不演示) 运行结果: 2,tpool.shutdown() #close+join 如果没有shutdowm()函数,将出现边进入列表边打印现象,根据需求选 阅读全文
posted @ 2019-02-01 21:52 莱茵河的雨季 阅读(153) 评论(0) 推荐(0) 编辑
上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 27 下一页