标签:int 连接 参与 nbsp update 内连接 from delete span
增:
insert into (1,2,3) values (a,b,c);
删:
delete from student where id=1;
改:
update student set name=‘郑汉巧’,‘sex=男’ where id =1;
查:
多表查询
Select 字段 right、left、inner join on a.id=b.id;
Select * inner jion on A a,B bwhere a.id= b.id
And age>20
And salary>8000
内连接:指连接结果仅包含符合连接条件的行,参与连接的两个表都应该符合连接条件。
外连接:连接结果不仅包含符合连接条件的行同时也包含自身不符合条件的行。包括左外连接、右外连接和全外连接。
标签:int 连接 参与 nbsp update 内连接 from delete span
原文地址:https://www.cnblogs.com/fqqwz/p/11636860.html