select names starts with a,b,c
Answer Posted / naren
select * from table_name where Name like 'A%'
union
select * from table_name where Name like 'B%'
union
select * from table_name where Name like 'C%'
Is This Answer Correct ? | 6 Yes | 10 No |
Post New Answer View All Answers
Does the order of columns in update statements matter?
What are information schema views?
How to create “dependant” parameter “make, model, year”
tell me the disaster recovery plan
What is Sqlpaging in SqlServer 2005 ?
What is a deadlock and what is a live lock?
What are system databases into sql server (2005/2008) : sql server database administration
What are page splits?
What is rolap and its advantage? : sql server analysis services, ssas
What is a database in ms sql server?
What are the two authentication modes in sql server?
What is snapshot report?
why does a sql statement work correctly outside of a user-defined function, but incorrectly inside it? : Sql server administration
How to manipulate data from one table to another table ?
How to create a stored procedure with a statement block in ms sql server?