Understanding Queries and Creating Database
Hello, and welcome to the blog. In this blog we are going to talk about "Queries" in database. As we discussed in my previous blog ( https://learntocodewithmustafapinjari.blogspot.com/2020/07/basics-of-sql.html ) that SQL is used for performing different operations on database. But how SQL do it? It is actually actually done by "Queries". Don't worry here "Query" doesn't meant doubt. In this blog we will talk about : What is a Query? Types of Query. Creating our database with the help of query. Let's start with 1) What is Query? Query is nothing but a statement or instruction to communicate with manipulate database or to manipulate database. By using queries you can create a database, insert values in table, update those values, delete rows and many more operations can be performed. 2) Types of Query. There are 5 types of query: DDL : Data Definition Language. DML : Data Manipulation Language. DCL : Data Control Language. TCL : Transaction Con...