-
去重数据
select distnct * from xx;
-
通过链接查询
join on
-
创建索引
create index index_name on example_table(statu);
-
分析索引
explain query plan 查询语句;
analyze table_name;
-
分页查询
用where而不是offset来设置页大小
计算总页数:total_pages=(total_records+page_size-1)//page_size -
事务查询
start transaction;
sql语句;
try:commit;
except:rollback; -
触发器
实际不用