摘要:
两个表 student表,information表 左连接 student表 left join information表 SELECT * FROM student s LEFT JOIN information f on s.SNO = f.SNO; SNO='202201',s有2条,f有1条 阅读全文
摘要:
首先注意拼写(因为我老是记错字母顺序或者位数),exists,是6个字母;发音:英[ɪɡˈzɪsts],原型:exist; 举例 下面直接进入正题,先上个例子 select * from user u where u.age<25 and EXISTS ( select * from grade g 阅读全文