Click here to Skip to main content
15,896,207 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
sql query for getting the details of the row if the first four characters matches the criteria
Posted

try - hope self explanatory

SQL
select name
from tblEmployee
where substring(name,1,4)='ABCD'
 
Share this answer
 
select * from <tblname> where name like ABCD%

refer below link it might help you

http://www.1keydata.com/sql/sqllike.html
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900