link
Query data from tables
Connect to MySQL database
List all databases
Insert data into tables
INSERT INTO
Add new records to MySQL tables.
Insert single record
INSERT INTO users (name, email) VALUES ('John', 'john@example.com');
Insert multiple records
INSERT INTO users (name, email) VALUES ('Alice', 'alice@example.com'), ('Bob', 'bob@example.com');
Create new database
Show all tables in the current database
Remove unused data