[Message]
00000712
语句1: select .. from xxx where xx_no = 20200400001
语句2: select .. from xxx where xx_no = '20200400001'
的区别: 1)如果 xx_no 字段类型不为 string/char/varchar,则执行如上语句1时,则需要进行xx_no类型转换(全表扫描),然后进行比较。尽管针对 xx_no有索引,也不会用。
详见:https://www.jianshu.com/p/e24a4778de86
顶端
目录
评价