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 sqlca’s maximum length?
What is cursor stability?
can you use symbolic parameters in JOB?
how many partitions are possible in partitioned tablespace? dont say 1-64. a)240 b)256 c)512 d)none
Define predicate?
List some fields from sqlca?
What is the FREE command?
What is schema in db2?
In terms of DB2 indexing, what is the root page?
How to run db2 command in windows?
what is datacom db?
Write a query to retrive partial string.