Create MySQL Database from Scratch

Author: neptune | 31st-Aug-2022
#SQL

How to create a DB in MySQL Server from Scratch?

Most of us at least know how to query the data from a table using a Select statement. But when it comes to creating a database then some of us may not know How to create DB from scratch?
In this article, I will show you how you can create a DB from scratch and create or alter tables.


Follow these steps:

Step1: Open MySQL Workbench or CMD Prompt.



Step2: Use the below cmd to create a Database.

Syntax: Create Database <Database name>;

Query : Create Database NeptuneDB;


Note : Run the below cmd to select DB if you have more than one DB.
Syntax : Use <database name>;

Query: Use NeptuneDB;


Step3: Now Create a tables in the newly created database.
Syntax: Create table <table name> (column1 data_type, column2 data_type,...);
Query: Create table Users (

UserID int,

FirstName varchar(255),

LastName varchar(255),

Email varchar(255),

Address varchar(255) );





Step4: Now insert the values into the table we just created.
Syntax : INSERT INTO <table name> VALUES (column1, column2,...);
Query : INSERT INTO Users VALUES (

'1','Neptune','World','neptuneworld. [email protected]',

'https://neptuneworld.in');

Note: Above syntax work when you pass all the column values.

Just like that you can create other tables in the same DB.
Example of another table:
Articles table created.



If you want to add new column in table then you can use ALTER cmd.
Example : New column added in Articles table.


Finally, we create a database and also create and alter table. This will definitely help you if you are starting to learn MySQL Server.

Thanks for Reading !!!





Related Blogs
5. Solution of Hacker Rank Weather Observation Station 8.
Author: neptune | 23rd-Jan-2023
#SQL #Hackerrank
Query the list of CITY names from STATION which have vowels (i.e., a, e, i, o, and u) as both their first and last characters. Your result cannot contain duplicates...

The Blunder | Hackerrank
Author: neptune | 21st-Nov-2022
#SQL #Hackerrank
Write a query calculating the amount of error (i.e.: average monthly salaries), and round it up to the next integer...

7.Solution of Hacker Rank The Report
Author: neptune | 23rd-Jan-2023
#SQL #Hackerrank
Problem Statement : generate a report containing three columns: Name, Grade and Mark. Ketty doesn't want the NAMES of those students who received a grade lower than 8...

4. Solution of Hacker Rank Weather Observation Station 6.
Author: neptune | 23rd-Jan-2023
#SQL #Hackerrank
Query the list of CITY names starting with vowels (i.e., a, e, i, o, or u) from STATION. Your result cannot contain duplicates...

3. Solution of Hacker Rank Weather Observation Station 4.
Author: neptune | 23rd-Jan-2023
#SQL #Hackerrank
Problem Statement : Find the difference between the total number of CITY entries in the table and the number of distinct CITY entries in the table...

The PADS | Hackerrank
Author: neptune | 21st-Nov-2022
#SQL #Hackerrank
Problem Statement: Generate the following two result sets: 1. Query an alphabetically ordered list of all names in OCCUPATIONS, immediately followed by the first letter of each profession...

6. Solution of Hacker Rank Employee Salaries.
Author: neptune | 23rd-Jan-2023
#SQL #Hackerrank
Problem Statement : Query that prints a list of employee names for employees in Employee having a salary greater than $2000 per month and experience less than 10 months...

1. Basic SQL Select Query of Hacker Rank.
Author: neptune | 20th-Apr-2022
#SQL #Hackerrank
Problem Statement : Query all columns for all American cities in the CITY table with populations larger than 100000. The CountryCode for America is USA...

2. Solution of Hacker Rank Weather Observation Station 3.
Author: neptune | 23rd-Jan-2023
#SQL #Hackerrank
Problem Statement : Query a list of CITY names from STATION for cities that have an even ID number. Print the results in any order, but exclude duplicates from the answer...

30+ SQL Interview Questions
Author: neptune | 05th-Jan-2023
#Interview #SQL
Data Definition Language (DDL) – It allows end-users to CREATE, ALTER, and DELETE database objects...

View More