IN操作符与=异同

  • 相同点:均在WHERE中使用作为筛选条件之一、均是等于的含义

  •  不同点:IN可以规定多个值,等于规定一个值

  • select * from Websites where name in ('uu','dd');

  • select * from Websites where name='uu' or name='dd';

你可能感兴趣的:(SQL,sql)