Porovnávat pouze v případě, že je číselné
select * from student
where
(
case when ISNUMERIC( linerevnum )
then cast (linerevnum as int)
else null
end ) = 1
nebo jednoduše:
select * from student
linerevnum = '1'
Porovnávat pouze v případě, že je číselné
select * from student
where
(
case when ISNUMERIC( linerevnum )
then cast (linerevnum as int)
else null
end ) = 1
nebo jednoduše:
select * from student
linerevnum = '1'