首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > asp.net >

sql函数中的right()的疑问.该如何处理

2012-02-29 
sql函数中的right()的疑问.select*from表1whereright(字段1,1) A 为什么结果没有记录呢?明明应该有的.难

sql函数中的right()的疑问.
select   *   from   表1   where   right(字段1,1)= 'A ';

为什么结果没有记录呢?明明应该有的.

难道这里的right( 'abc ',1)不等于 'c ';



[解决办法]

不会啊,测试下

create table #t (id nvarchar(10))
insert #t
select 'teste ' union
select 'testd ' union
select 'testc ' union
select 'testb ' union
select 'testa '


select * from #t where right(id,1)= 'd '

drop table #t

热点排行