如何排除除以外的所有结果

时间:2017-02-01 15:39:47

标签: sql-server-2008

我正在编写一个使用两种类型的员工ID's,'E'和& 'S'。我需要排除所有'S'ID's除了S111111。我该怎么做?

Select * from Roster where left(id, 1) <> 'S'

3 个答案:

答案 0 :(得分:1)

Select * from Roster where left(id,1) = 'E' or id='S111111'

答案 1 :(得分:0)

从名单中选择*左侧(id,1)&lt;&gt; &#39; S&#39; 联盟 从名册中选择*,其中id =&#39; S111111&#39;

答案 2 :(得分:-1)

select * from roster where columnname like 'E%' or id=S111111