in emptable i want to retrive the name of employee whose
name in 'J'char.exp: arjun,jagadesh,niranjan,anju,aaaj etc.
Answers were Sorted based on User's Feedback
Answer / muthu kumar
select * from emp where empname like '%j%'
Is This Answer Correct ? | 12 Yes | 1 No |
Answer / deepa
For those who names starts with letter J is
select * from emp where name like 'j%'
For those who names with letter J is
select * from emp where name like '%j%'
Is This Answer Correct ? | 2 Yes | 3 No |
Answer / faridha
select * from emp where ename like 'J%' or '%J' and
not like ('arjun','jagadesh','niranjan','anju','aaaj');
Is This Answer Correct ? | 0 Yes | 1 No |
Answer / ashok
select * from employee where name like=%'j'%
Thanx
Ashok
Is This Answer Correct ? | 1 Yes | 7 No |
Answer / ashok
select * from employee where name like=%'j'%
Thanx
Ashok
Is This Answer Correct ? | 0 Yes | 7 No |
What are the new data types are introduced in sql 2000?
How to select an exiting database using mssql_select_db()?
Explain what are commit and rollback in sql?
How do you read transaction logs
Can you move the resources after pausing the node? : sql server database administration
What is a self join in sql server?
Accidentally i deleted my table. How can i get that table?
What are the hotfixes and patches in sql server?
What changes in the front end code is needed if mirroring is implemented for the high availability? : sql server database administration
which is best institute to learn sql server in ameerpet or sr nagar or maithrivanam?please help
What is the difference between for xml raw and for xml auto?
Can binary strings be converted into numeric or float data types?