1. 去重数据
    select distnct * from xx;

  2. 通过链接查询
    join on

  3. 创建索引
    create index index_name on example_table(statu);

  4. 分析索引

explain query plan 查询语句;
analyze table_name;
  1. 分页查询
    用where而不是offset来设置页大小
    计算总页数:total_pages=(total_records+page_size-1)//page_size

  2. 事务查询
    start transaction;
    sql语句;
    try:commit;
    except:rollback;

  3. 触发器
    实际不用

posted on 2024-08-06 09:22  HelloJacker  阅读(2)  评论(0编辑  收藏  举报