Learn SQL using MySQL
SQL – Structured Query Language . It has various commands to execute. Let us the mysql to run the SQL commands . Steps to follow: · MySql is open source,you can run the SQL command in this environment. · First, download the MySql from official website. · Install it in your system. · Login into mysql in command prompt by entering the passwords. Enter password: *********** · The environment is look like as follows. Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 21 Server version: 9.6.0 MySQL Community Server - GPL · First, create a database as my_database. mysql> create database my_database; Query OK, 1 row affected (0.995 sec) · ...