SQL笔记
join字段独立出现是等价于inner join的。例子:#1select * from a join b on a.id = b.id#2select * from a inner join b on a.id = b.id#3select * from a, b where a.id = b.id这三种写法是等价的。试题:设有一张学生表student,其中学生编号s_id, 学生姓名s_name, 学生出生年月s_birth, 学生性别s_sex;设有一张成绩表,设有学生编号s_
原创
2022-05-18 19:58:10 ·
330 阅读 ·
0 评论