Starting SQL basic information1. creating a databaseCREATE DATABASE (name of database);2. creating tablesCREATE TABLE name of the table ( column1 data type column2 data type ... );Ex.CREATE TABLE students ( id INT, -> id: A column that stores integer data (`INT`). name VARCHAR(50), -> A column that can store a string of up to 50 characters (`VARCHAR(50)`). age INT -> A column..