Porównaj tylko wtedy, gdy jest numeryczne
select * from student
where
(
case when ISNUMERIC( linerevnum )
then cast (linerevnum as int)
else null
end ) = 1
lub po prostu:
select * from student
linerevnum = '1'
Porównaj tylko wtedy, gdy jest numeryczne
select * from student
where
(
case when ISNUMERIC( linerevnum )
then cast (linerevnum as int)
else null
end ) = 1
lub po prostu:
select * from student
linerevnum = '1'