美文网首页
mysql优化建议

mysql优化建议

作者: flyjar | 来源:发表于2020-08-27 10:05 被阅读0次

    1
    sql中出现了过多的or时,建议是多个查询sql,用union all将结果集连接起来

    2
    查询是否存在
    select 1 from table where filer='' limit 1

    如果确认要查询或者要删除的对象,有确定的的条数

    select * from table where filter=1 limit 1

    delte from table where filter=1 limit 1

    相关文章

      网友评论

          本文标题:mysql优化建议

          本文链接:https://www.haomeiwen.com/subject/lhjsjktx.html