InterviewSolution
Saved Bookmarks
| 1. |
Consider table 'BooK. Write SQL statement to change the price for the BOOK titled 'Informatics made fun' to 200?BCodeTitlePrice101ABC of Physics300102Informatics made fun250103Computers are simple375 |
|
Answer» Update Book set Price = 200 where Title = 'Informatics made fun'. |
|