Saved Bookmarks
| 1. |
Select the correct query from the options given below to display the names of all streams only once. a. Select distinct stream from score; b. Select distinct(stream) from score; c. Select unique stream from score; d. Select stream from score where stream = distinct; |
|
Answer» Correct option: a. Select distinct stream from score; |
|