标签:建议 select mys not ble UNC 避免 table truncate
a、尽可能使用更小的整数类型.(mediumint就比int更合适). b、尽可能的定义字段为not null,除非这个字段需要null.
c、如果想要清空表的所有记录,建议用truncate table tablename而不是delete from tablename. d、避免出现SELECT * FROM table 语句,要明确查出的字段。
e、小心使用 IN 和 OR,需要注意In集合中的数据量。建议集合中的数据不超过200个。
标签:建议 select mys not ble UNC 避免 table truncate
原文地址:https://www.cnblogs.com/glb79809-glb/p/14020616.html