select names starts with a,b,c
Answer Posted / senthil
SELECT NAMES FROM TABLE_NAME
WHERE lower(NAME) LIKE 'a%'
or lower(NAME) LIKE 'b%'
or lower(NAME) LIKE 'c%';
| Is This Answer Correct ? | 8 Yes | 3 No |
Post New Answer View All Answers
How are the exceptions handled in sql server programming?
How to connect php with different port numbers?
How to connect Azure federated root database and apply federation in entity framework?
Can sql server 2016 run on windows 7?
Explain cross join or cartesian product in sql?
Do you know what are the differences between lost updates and uncommitted dependencies?
What are the dis_advantages of stored procedures, triggers, indexes?
Do you know what is a linked server in sql server?
can you implement data mining in SSRS?
When we should use and scope of @@identity?
What is subreport?
How to delete a database in ms sql server?
Explain rdbms?
How to create a view on an existing table in ms sql server?
Why does a sql statement work correctly outside of a user-defined function, but incorrectly inside it?