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
What are the restrictions applicable while creating views? : SQL Server Architecture
What is RMS migrations?
Where actually sql azure database is hosted?
What is order of B+tree?
you added a row to a view, but the row is not shown on the view. Explain how this can happen, and how you can remedy the situation
What are the different types of normalization?
what is a traditional network library for sql servers? : Sql server database administration
What are the differences between clustered and non-clustered index?
what is isolation level at dead lock?
How data can be copied from one table to another table?
What is the language structure to add a record to a table?
What is normalization? Explain its different types?
What is SQL Azure Data sync?
How to insert data with null values?
What do you think of this implementation? Can this be implemented better?