Skip to content

Commit 460c036

Browse files
committed
join优化
1 parent 4b457eb commit 460c036

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

mysql开发技巧一/join优化

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
DDL:数据定义语言 --- CREATE、ALTER、DROP、TRUNCATE
2+
TPL:事务处理语言 --- COMMIT、ROLLBACK、SAVEPOINT、SET TRANSACTION
3+
DCL:数据控制语言 --- GRANT、REVOKE
4+
DML:数据操作语言 --- SELECT、UPDATE、INSERT、DELETE
5+
6+
join从句:: inner | full outer | left outer | right outer | cross
7+
内连接inner join: select a.user_name,a.over,b.over from user1 a join user2 b on a.user_name=b.user_name;
8+
9+
10+
11+
12+
13+
14+
15+
16+

0 commit comments

Comments
 (0)