What keyword does an SQL SELECT statement use for a string
search?
Answers were Sorted based on User's Feedback
Like is used with where clause to search,update, and delete a record using wild cards.
Example:-
To Search;-
select * from Employee where Name like 'a%'
Note;- Search all records whose employee name is stared from a character.
To Update:-
update Employee set Name='amit' where Name like 'a%'
update all records with name amit whose employee name is started from a character.
To Delete:-
delete from Employee where Name like 'a%'
Delete all records whose employee name is started from a Character.
| Is This Answer Correct ? | 1 Yes | 0 No |
what is difference between Static call and Dynamic call? How does it function?
What is db2 purescale?
What is db2 connect?
I need to view the number of tables existing under one particular Owner. Is it possible? If so, pl give the SQL query for this?
What is the use of with ur in db2?
What is reorg in database?
what is diffrence b/w file-aid tool and file-aid utility???
What is the function of the Data Manager?
What is the difference between cursor stability and repeatable read isolation levels?
How many clustering indexes can be defined for a table?
Name some fields from SQLCA
What are concurrency issues?