Archives: Tutorials

All Tutorials

What are the Joins in MYSQL

It is used in the situation when you want to fetch multiple data from the different tables, and it is used with a select statement. Types of Joins in MYSQL Inner join in MYSQL Left join in MYSQL Right outer join in MYSQL Inner join in MYSQL When the join condition is satisfied, it will …

What are the Joins in MYSQL Read More »

What is Constraints in MYSQL

Constraints are used to set a rule to allow or add restrictions on database tables in MYSQL.  That decides what values should be stored in columns. Constraints are used to identify unique records in the database table. Constraints help to set limit the value which should be entered into the column. Constraints in MYSQL Primary Key constraint Foreign …

What is Constraints in MYSQL Read More »

MYSQL Table

What is the table in MYSQL? How to create the table in MYSQL and what are the commands to create the table in MySQL. What is MYSQL Table MySql Table is used to create a table, with names, rows, and columns. For creating any table name of the table, the name of the field, and …

MYSQL Table Read More »

How to drop Database in MYSQL

How to drop the database in MySQL. In this MYSQL tutorial will see how to drop a database or schema from MYSQL Command prompt or Command to drop MySQL database. Below is the example to drop a database in MYSQL. To perform this practical example Prefer MYSQL tutorial to create a database. Once you have a …

How to drop Database in MYSQL Read More »