MCQOPTIONS
Saved Bookmarks
| 1. |
What are the results of the following queries if col is an integer column?1. SELECT * FROM student WHERE id = '6';2. SELECT * FROM student WHERE id = 6; |
| A. | 1 is an error |
| B. | 2 is an error |
| C. | same |
| D. | different |
| E. | None of these |
| Answer» D. different | |