Rdbms Lab Exercise
Rdbms Lab Exercise
Statement of problem
create a table ‘ library’ with proper fields and create another table ‘ library1’ and insert
rows from library using views
Aim
To create a table ‘ library’ with proper fields and create another table ‘ library1’ and insert
rows from library using views
PROCEDURE:
Create Database
CREATE DATABASE lib_db;
show the database
SHOW DATABASES;
Using the database
USE lib_db;
Result
The mysql query to create a table ‘ library’ with proper fields and create another table ‘
library1’ and insert rows from library using views has been done successfully.
OUTPUT: