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; 导出数据库
create unique index 索引名 on 表名(字段) 创建唯一索引;
create index 索引名 on 表名(字段) 创建普通索引;