摘要: 阅读全文
posted @ 2023-02-28 21:05 大灰狼21 阅读(10) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2023-02-28 20:51 大灰狼21 阅读(1) 评论(0) 推荐(0) 编辑
摘要: DML数据增删改 DDL表和库增删改:执行结果可以为0,不能用影响行数判断 阅读全文
posted @ 2023-02-28 20:30 大灰狼21 阅读(10) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2023-02-28 20:17 大灰狼21 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 0.添加jar,add as library 阅读全文
posted @ 2023-02-28 19:57 大灰狼21 阅读(3) 评论(0) 推荐(0) 编辑
摘要: ctrl+w 阅读全文
posted @ 2023-02-28 19:33 大灰狼21 阅读(1) 评论(0) 推荐(0) 编辑
摘要: win+shift+s 之后ctrl+v粘贴即可 阅读全文
posted @ 2023-02-28 19:33 大灰狼21 阅读(101) 评论(0) 推荐(0) 编辑
摘要: 0。创建工程,导入jar,add as library 阅读全文
posted @ 2023-02-28 19:32 大灰狼21 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 连接查询: 内连接:AB交集 隐式内连接 select t1.name, t1.age, t2.dname from emp t1, dept t2 where t1.dep_id=t2.did; --起别名简化书写 显式内连接 select * from emp join dept on emp. 阅读全文
posted @ 2023-02-28 15:30 大灰狼21 阅读(11) 评论(0) 推荐(0) 编辑
摘要: 一对多: 在多的一方建立外键关联一的一方 多对多:(订单/商品) 建立第三张中间表,中间表至少包含两个外键,分别关联两个主键 中间表可以计数 一对一:(一张表拆成用户表和用户详情表) 在任意一方加入外键,关联另一方主键,设此外键unique 阅读全文
posted @ 2023-02-28 14:44 大灰狼21 阅读(28) 评论(0) 推荐(0) 编辑
摘要: drop table if exists emp; -- 建表emp create table emp ( id int primary key auto_increament; -- 主键且自增.数字且唯一 ename varchar(50) not null unique; -- 非空,唯一 j 阅读全文
posted @ 2023-02-28 10:57 大灰狼21 阅读(49) 评论(0) 推荐(0) 编辑
摘要: 聚合函数 查班里一共多少学生: select count(id) from stu; -- count()统计的列名不能为null select count(*) from stu; -- 推荐写* 查班里数学最高/低分/平均分: select min(math) from stu; -- 聚合函数 阅读全文
posted @ 2023-02-28 09:40 大灰狼21 阅读(14) 评论(0) 推荐(0) 编辑
摘要: 模糊查询 查姓马: select * from stu where name like '马%'; 查第二个字是花: select * from stu where name like '_花%'; -- 下划线占第一个位置 查名字里包含德:: select * from stu where nam 阅读全文
posted @ 2023-02-28 09:11 大灰狼21 阅读(12) 评论(0) 推荐(0) 编辑