Advertisements
Advertisements
प्रश्न
Write the SQL statement to create a table, Customer with the following specifications:
| Table: Customer | ||
| Column Name | Data Type | Key |
| CID | Int | Primary Key |
| FName | Varchar (20) | |
| LName | Varchar (20) | |
| Age | Int | |
कोड लेखन
Advertisements
उत्तर
CREATE TABLE CUSTOMER
(
CID INT PRIMARY KEY,
FNAME VARCHAR (20),
LNAME VARCHAR (20),
AGE INT
);shaalaa.com
या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?
2024-2025 (March) Set 4
