假设我有一个长查询字符串,例如。
SELECT id from users where collegeid='1' or collegeid='2' . . . collegeid='1000'
它会以任何方式影响速度或输出吗?
SELECT m.id,m.message,m.postby,m.tstamp,m.type,m.category,u.name,u.img
from messages m
join users u on m.postby=u.uid
where m.cid = '1' or m.cid = '1' . . . . . .
or m.cid = '1000'. . . .