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
Explain active/passive and active/active cluster configurations?
If you're given a raw data table, how would perform etl (extract, transform, load) with sql to obtain the data in a desired format?
How to use transact-sql statements to access the database engine?
What is postgresql server?
I applied Transactional with updatable subscriptions replication on 2 tables now i want to delete those 2 tables but i cannot delete those tables as replication is running how can i stop replication for those 2 tables(but i don't want to delete those replicated tables but i need to stop the replication) how can i do that
What is the use of =,==,=== operators?
How to run queries with sql server management studio express?
What is temporal data type?
in the physical file layout, where should the transaction log be stored in relation to the data file? : Sql server administration
on line cluster can we make if yes tell me the procedure
How to Update from select query in sql server?
Indexes are updated automatically is the full-text index also updated automatically?
Explain error handling in ssis?
What is difference between createstatement and preparedstatement?
What is a heap?