order by 升序谬墙;
order by 字段 desc 降序;
distinct 去重经备;
mod(x, y) x%y 取模拭抬;
div(x, y) x/y 取余;
left join 外表連接侵蒙,左邊的表都會顯示造虎,右邊的表允許為空;
right join 同理纷闺;
join 也叫 inner join, 兩邊都不允許為空算凿;
mysqldump -uroot -p123456 --database > ~/xyy/movie_db.sql份蝴; 導(dǎo)出數(shù)據(jù)庫
create unique index 索引名 on 表名(字段) 創(chuàng)建唯一索引;
create index 索引名 on 表名(字段) 創(chuàng)建普通索引氓轰;