Hi,
If the emp_id is numeric field, the SQL
select * from emp where emp_id like '1%' ;
will result into:
219: Wildcard matching may not be used with non-character types.
Workaround:
select * from emp where rpad(emp_id,10,' ') like '1%' ;
Regards,
Shriyan
"If you have knowledge, let others light their candles with it."