mysql 单表查询、多表查询
首先我说一下关于查询的顺序和一些查询的方法 select * as 别名 from 表名 where 条件 group by 字段名 hanving 条件 order by 字段名 (asc/desc) 执行这条命令的顺序 是先从from 开始 获得哪张表,然后在开始判断条件,进行分组having 二次判断,用在group by 分组后面,然后 order by 字段名,根据字段名进行一个排序,默认为升序。字段名后面可以跟(asc/desc)asc升序,desc降序 最后一步是 select 出所需要的信息。 单表查询 首先....单表查询咱得有一张表 创建下面这张表,我用几个案列来搞定这个单表查询 create table emp( id int not null unique auto_increment, name varchar ( 20 ) not null , sex enum( ' male ' , ' female ' ) not null default ' male ' , #大部分是男的 age int ( 3 ) unsigned not null default 28 , hire_date date not null , post varchar ( 50 ), post_comment varchar ( 100 ), salary double (