Advertisements
Advertisements
प्रश्न
Consider the following table Stationary. Write SQL commands for following statement.
S_ID | S_Name | C_Name | Price | Quantity |
001 | Note Book | ABC | 20 | 50 |
002 | Pencil Box | XYZ | 10 | 80 |
003 | A4 Pages rim | PQR | 600 | 2 |
Write SQL command to insert above mentioned record in table
संक्षेप में उत्तर
उत्तर
INSERT INTO Stationary values
(001, 'Note Book', 'ABC', 20, 50)
(002, 'Pencil Box', 'XYZ', 10, 80)
(003, 'A4 Pages rim', 'PQR', 600, 2);
shaalaa.com
Data Definition Language (DDL) Commands
क्या इस प्रश्न या उत्तर में कोई त्रुटि है?