摘要: 1.数据增删改 2.单表查询 3.正则表达式 4.多表查询 ​ 笛卡尔积 ​ 内连接 ​ 外链接 ​ 子查询 一.数据的增删改 为什么不说查 因为查询语句 有很多细节 所以先从简单的说起 添加数据: 1.insert into table_name[column,[column2.....]] va 阅读全文
posted @ 2019-07-12 23:15 CoderJerry 阅读(1458) 评论(0) 推荐(0) 编辑
摘要: 完成下例sql语句的编写 用户表 create table user( id int not null unique auto_increment, username varchar(20) not null, password varchar(50) not null, primary key(u 阅读全文
posted @ 2019-07-12 22:50 CoderJerry 阅读(698) 评论(0) 推荐(0) 编辑