摘要:
一、内外连接全连接,左右连接 █▓ 通过两张表查找其对应的记录. 隐式 内连接 select * from a,b where a.列名 = b.列名 █▓ 左连接 select * from a left outer join b on a.id = b.id █▓ 右连接 select * fr 阅读全文
摘要:
一、数据库的查询用法 1、 数据表记录的查询: 运算符、虑重、列运算、别名、排序、聚合函数、分组 1.1数据准备 create table exam( id int primary key auto_increment, name varchar(20) not null, chinese doub 阅读全文