How do you retrieve the first 5 characters of firstname column of db2 table emp?
Answer / ankit
Select substr(firstname,1,5) as firtname from emp;
| Is This Answer Correct ? | 0 Yes | 0 No |
Can you define an Index if the table size less than 10 PAGES?
Following a db2 update statement, what is the quickest way to compute the total number of updated rows?
How do you Load a table ?? and what is Load replace ?
How do I delete a table in db2?
What is a subselect? Is it different from a nested select?
Where do you specify them?
What is bind package and plan in db2?
how to u check the query is executing or not ?where will u check for sqlcode ?
What is copy pending and check pending in db2?
what are bind concepts in db2 cobol?
What is lock escalation?
OUTER JOINS USED TO GET MATCHING AND NONMATCHING ROWS FORM 2 OR MORE TABLES BASED ON COLUMNS. SIMPLE JOINS ALSO DO THE SAME THEN WHAT IS THE USE OF OUTER JOINS.