我正在尝试显示两个连接表的所有列,但仅从antsDescriptionCode
数据类型为nvarchar
.
有人可以帮忙吗?谢谢。
我当前的查询允许我在某些条件下显示两个连接表的所有列:
select c.*, a.*
from cats c
join ants a on c.ctypeid = a.atypeid
where
(c.CatsNo like 'cat4%'
or c.CatsNo like 'cat7%'
or c.CatsNo like 'cat8%')
and a.antsflagged = 0
and a.antsDescriptionCode in ('type a', 'type b', 'type c')!
我正在使用 Microsoft SQL Server 2008。