mysql -uroot -p //连接数据库,p后面直接输入密码
group by字句将表的行划分为不同的组,注意事项:select子句的字段列表除聚集函数意外,都要在group by的字句中有定义才行
分组前的过滤条件用where,分组后的条件用having
多表的连接查询
交叉连接:select selectlist from table1 cross join table2
内连接,删除没有匹配的行 from table1 [inner] join table2 on table1.column=table2.column
外连接:保留原表的信息不删除,不匹配放入Null值 from table1 left|right join table2 on table1.column=table2.column