The below works but only on the first number. The table has the column data type as nvarchar size 13.
the sql:
this works
select a, b, c from table where c like '6%';
but this does not
select a, b, c from table where c like '6625%';
There are 13 numbers in the field.
Any ideas?
the sql:
this works
select a, b, c from table where c like '6%';
but this does not
select a, b, c from table where c like '6625%';
There are 13 numbers in the field.
Any ideas?