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
Please explain go command in sql server?
What is difference statement and preparedstatement?
What is constraints and its types?
What is “begin trans”, “commit tran”, “rollback tran” and “savetran”?
How do I find the sql server database version?
What is a dbms wizard?
Explain the difference between delete,drop and truncate in SQL Server?
Can you please differentiate between a primary key and a unique key?
What is the datatype of rowid?
How many types of triggers in sql server?
How many ways to create table-valued functions?
What is the difference between deallocate cursor and close cursor?
after migrating the dts packg to ssis by using migrtn wizrd in 2005. iam not able to open ssis pack and getting error. what r those errors? how to resolve?
Explain tables in SQL Azure?
Retrieve the unique rows from table without using UNIQUE and DISTINCT keywords.