访问SQL查询以基于NULL值和字母进行排序

时间:2014-04-15 16:05:20

标签: sql ms-access

我有一张像

这样的表格
  Ktype         EID        Basecode        
 ------         ----       ---------    
  sd             1001       S23   
  u                         M11     
  a              1003       R11    
  s              1004       M007     
  f                          M7  
  k              1006       W546     
  w              1005       N77    
  x                          A40
  b              1006       W546  

如何获取 Ktype ,其中 EID 为空且基本代码不以M开头。

2 个答案:

答案 0 :(得分:2)

试试这个

select ktype From [table] where eid is null and basecode not LIKE 'M%' 

答案 1 :(得分:0)

filter子句必须是:

where EID is null
and left(Basecode, 1) <> 'M'