CBSE Class 12 Informatics Practices
Question 16 of 27
Database Query using SQL — Question 16
Back to all questionsCREATE TABLE PAYMENT (
Loan_number INT(4) PRIMARY KEY,
Payment_number VARCHAR(3),
Payment_date DATE,
Payment_amount INT(8) NOT NULL
);