MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the result of the query given below?SELECT Person_id, ACTIVE AS STATUS,Person_id * 3.14 AS Person_pi,UPPER (LName) AS Last_NameFROM Person; |
| A. | Error |
| B. | Person_id, ACTIVE, Person_id * 314, UPPER(LName) |
| C. | Person_id, Status, Person_pi, Last_Name |
| D. | All of above |
| E. | None of these |
| Answer» D. All of above | |