1
我有一個表作爲這樣字母(az)
create table #test
(id int , value varchar(15) )
insert into #test
values(1,'10')
,(2,'12')
,(3, '1.3')
,(4, 'NO VALUE')
SELECT * FROM #TEST
當我選擇,我不希望看到的記錄4,我的意思是與像(沒有價值字母的任何記錄,NO DATA,(AZ))。請有人幫我。