08 2022 档案
摘要:设置:File Settings Languages&Frameworks(旧版本叫Behavior) SQL Dialects 配置好数据库方言 第一个:Global Sql Dialect是全局数据库方言,建议不要配置,因为不同的项目肯能是不同的数据库Mysql、Oracle,除非你的项目只用一
阅读全文
摘要:select * from AAA where id in (select id from BBB)等价于:select * from AAA where exists(select * from BBB where BBB.id=AAA.id) 执行顺序不同,in 先执行内层查询,exists先查
阅读全文