+2 votes
in Class 12 by kratos

Write SQL query to create a table'Bank_Customer' with the following structure :

| Field | Type | Constriant |
| Acc_No | Integer | Primary Key |
| Cust_Name | Varchar (20) | Not Null |
| Cust_Add | Varchar (20) | |
| Cust_City | Varchar (20) | |

1 Answer

+1 vote
by kratos
 
Best answer

Create Table Bank_Customer (Acc_No Integer Primary key, Cust_Name Varchar(20) Not null, Cust_Add Varchar(20), Cust-City Varchar(20) );

...