InterviewSolution
Saved Bookmarks
| 1. |
Which keyword is used to rename a relation in a query?(a) rename(b) as(c) is(d) to |
|
Answer» The correct choice is (b) as To explain: The “as” keyword is used to rename a relation in a query. This is used for convenience as long relation names can reduce readability. |
|