SQL92 VS SQL 99 语法
92语法 内连接 from table1, table2 where table1.col table2.col 外连接 放在 从表 左连接: from table1, table2 where table1.col table2.col() 右连接: from table1, table2 where table…
DQL语句介绍
DQL是数据查询语言,用来查询数据库中表的记录
DQL-基本查询语句 SELECT
字段列表 FROM
表名列表 WHERE
条件列表 GROUP BY
分组字段列表 HAVIMG
分组后条件列表 ORDER BY
排列字段列表 LIMIT
分页参数 讲解过程:基本查询、条件查询…