select count(*) from user
where userid not in (select userid from ship where status in ('1','0'))
and field='web';
这个简单的语句似乎运行了很长时间,我该如何更改 sql 以便它可以运行得更快?谢谢。
select count(*) from user
where userid not in (select userid from ship where status in ('1','0'))
and field='web';
这个简单的语句似乎运行了很长时间,我该如何更改 sql 以便它可以运行得更快?谢谢。