when i am searching the names in range with following query
select * from salesman where name between 'a%' and 'c%';
it does not display the names starting from c; it displays the name which starts from a and b. why it is so?
select * from salesman where name between 'a%' and 'c%';
it does not display the names starting from c; it displays the name which starts from a and b. why it is so?
Comment