WHAT IS SQL?

 



For me SQL mean is like a notebook recorder for the things we want to track. According to my 
research Structured Query Language (SQL) is a standardized programming language that is used to manage relational databases and perform various operations on the data in them.
Such as managing a bookstore database. Imagine you are running a small bookstore and you want to keep track the inventory using database. You decide to use SQL to manage your book information. 


Creating a table called Books with columns like Title, Author, and Quantity.
Inserting Data you add a new book entry into the table. Querying Data,
You want to see all the books you have in stock. Updating Data you realize you've sold 
a copy of the book, so you update the quantity.

Comments