DBMS 5
DBMS 5
PRACTICAL-5
Aim: To Insert Data in the Tables of Library DBMS.
The "INSERT" command is used to add new records (rows) into a table within a
database. It allows you to specify the values for each column of the table that you're
inserting data into.
);
VALUES
);
VALUES
(1, 'Fiction'),
BCSE-510L
(2, 'Non-fiction'),
(3, 'Mystery');
AuthorID INT,
ISBN VARCHAR(13),
Genre VARCHAR(50),
);
VALUES
Email VARCHAR(100)
);
VALUES
BCSE-510L
BookID INT,
BorrowerID INT,
TransactionDate DATE,
DueDate DATE,
ReturnDate DATE,
);
VALUES
BookID INT,
CategoryID INT,
);
BCSE-510L
VALUES
(1, 1),
(2, 1),
(3, 3);