Click here to Skip to main content
15,888,195 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I want to access EMP_NAME
eg:EMP_NAME='SJCET'
in Sql query i specify EMP_NAME='J'
i want to acess the EMP_NAME which is having the letter 'J'
can any one help me to find the solution
Posted

try

SQL
EMP_NAME like '%J%'
 
Share this answer
 
Comments
Karthik Achari 4-Dec-13 4:34am    
Thanks Soumitra Mithu
SQL
select * from table_name where emp_name like '%J%'


This is solve your problem.
 
Share this answer
 
v2
Comments
Karthik Achari 4-Dec-13 4:33am    
Thanks Jain Nishant

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