| 1. |
What is data definition language? Explain SELECT and UPDATE commands. |
|
Answer» Data Defintion Language commands create database objects such as tables, views, etc., The various Data definition language commands are Create Table, Alter Table, Create View, Drop Table, etc., 1. Select Command: Usage: For example: 2. UPDATE command: The update command is used to change row values from a table. The SET key word takes the column in which values needs to be changed or updated. |
|