rdbms lab exercise
rdbms lab exercise
Statement of problem
create a table named ‘student’ with sequences
Aim
To create a table named ‘student’ with sequences
PROCEDURE:
Create Database
CREATE DATABASE seq_db;
show the database
SHOW DATABASES;
Using the database
USE seq_db;
Result
The mysql query to create a table named ‘student’ with sequences has been done
successfully.
Student Table structure:
Displaying Records: