sql

MySQL Delete Database

Introduction The DROP DATABASE command is a basic command of the MySQL language and is used to delete an existing database. I imagine that you have created databases and then had to delete them.Maybe to start over or just to remove data you no longer needed.Well, with this tutorial we will discover how to delete …

MySQL Delete Database Read More »

MySQL Create Database

Introduction The CREATE DATABASE command is used to create a new database in MySQL. If you’re starting to build your own data structure, the first thing you’ll need to do is create a database.Databases are the backbone of every application, in fact they contain all the data divided into tables. Always carefully execute commands that …

MySQL Create Database Read More »

MySQL Delete Table

Introduction MySQL provides the DROP TABLE command to delete a table. If you have created several tables in a database and now you no longer need them, you will definitely want to delete them.Another possible scenario is that you just want to delete the data within a table without deleting the structure as well. This …

MySQL Delete Table Read More »

MySQL Create Table

Introduction MySQL provides a command to create a new table; this command is called CREATE TABLE. If you are creating your own database you will definitely need to create multiple tables within it.Well, this post will show you the command syntax and several practical examples to best learn how to use it. Preliminary operations Since …

MySQL Create Table Read More »