-- Creating a table CREATE TABLE Library ( book_id INT AUTO_INCREMENT PRIMARY KEY, //Unique ID for each book(auto increment) title VARCHAR(200) NOT NULL, //books ...
USE elevatelabs; // Switches to the database named elevatelabs. //All subsequent commands (table creation, inserts, queries) will be executed inside this database. CREATE EMPLOYEES TABLE CREATE TABLE ...