查询语句语法:
SELECT
字段列表
FROM
表名字段
WHERE
条件列表
GROUP BY
分组字段列表
HAVING
分组后的条件列表
ORDER BY
排序字段列表
LIMIT
分页参数
执行顺序
#先找到表格
FROM
表名字段
WHERE
条件列表
GROUP BY
分组字段列表
HAVING
分组后的条件列表
SELECT
字段列表
ORDER BY
排序字段列表
LIMIT
分页参数
举一个例子,这是定义的查询语句
select name,age from emp where age>15 order by age asc;
select name,age from emp e where age>15 order by age asc;
select name,age from emp e where e.age>15 order by age asc;
在select 后的字段加e.name,e.age也应该是同样的效果;
select e.name,e.age from emp e where e.age>15 order by age asc;
select e.name,e.age eage from emp e where e.age>15 order by eage asc;