Friday, March 11, 2016

MySQL Queries and commands

In this post I hope to go through some MySQL commands that would help users get started and used to using it. Remember that semicolons are default used to show end of command/queries.Creation/Deletion CommandsUSE <database name>:This is used to enter an existing database.CREATE DATABASE <database name>:This is used to create a database.CREATE...