MySQL
TOPic666
这个作者很懒,什么都没留下…
展开
-
MySQL_DAY5
MySQL DAY5回顾数据行临时表(select * from tb where id>10)指定映射select id,name,1,sum(x)/count()条件case when id>8 then xx else xx end三元运算if(isnull(xx),0,1补充左右连表join上下连表union 自动去重:unionselect id,name from tb1unionselect num,sname原创 2020-07-29 16:11:33 · 957 阅读 · 1 评论 -
MySQL_DAY3、4_练习题
练习题题目班级表:classcidcaption1三年二班2一年三班3三年一班学生表:studentsidsnamegenderclass_id1zyx女12zx男13top男2老师表:teachertidtname1bobo2haha3zhilong课程表:coursecidcnameteacher_id1生物12原创 2020-07-23 21:17:24 · 1065 阅读 · 1 评论 -
MySQL DAY2
MySQL DAY2主键外键补充一个表只能有一个主键,主键可以由多列组成。create table t5( nid int(11) not null auto_crement, pid int(11) not null, num int(11), primary key(uid,pid) )engine=innodb default charset=utf8;create table t6( id int auto_原创 2020-07-22 01:24:34 · 142 阅读 · 0 评论 -
数据库DAY1
数据库DAY1 基本语句创建用户create user 'zyx'@'192.168.1.1' identified by'123123'; create user 'zyx'@'192.168.%' identified by'123123'; 创建用户名称为zyx,密码为123123,IP地址前缀为192.168的用户都可以登录 create user 'zyx'@'%' identified by'123123'; 【%】:任意IP地址授权grant select,ins原创 2020-07-18 21:10:04 · 289 阅读 · 1 评论