使用MySQL进行搜索时,哪个查询更好?SELECT id from table where strcol = 1 要么SELECT id from table where strcol = '1' 其中strcol是varchar(1)字段 最佳答案 '1'是更好的选择,因为您的strcol具有varchar类型。