Why use SQL to store data? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Why use SQL to store data?

I want to know that why we use SQL to store Data. Is there any other language to store Data? or can we use a simple text file to store Data?

10th Apr 2018, 2:12 AM
Bad Boy G ☣️
Bad Boy G ☣️ - avatar
4 Answers
+ 8
SQL is not used to store data. SQL is a query language used to query and obtain data from a database.
10th Apr 2018, 2:43 AM
Hatsy Rei
Hatsy Rei - avatar
+ 4
Well i'm gonna tell you anyway. Database consists of different types of data stored in one or multiple tables. Each table has fields (name of the column) and records (which is a row of the table) . When you need to find any data or store data on the database you don't have to go through all the tables or all the databases you created. You use what is known as Query language. Query is just saying like, i need this guys information with this id in that table. So you don't have to go through all the rows and tables of your database manually. Query languages differ from database to database. MySQL is one of those languages.
10th Apr 2018, 3:03 AM
Akib
Akib - avatar
+ 2
you don't need to store data in a database you can just store data in a text file like a setting file or you can store your data in json/xml files databases are not much more as a text file
10th Apr 2018, 3:21 AM
Stefanoo
Stefanoo - avatar
+ 1
You should study what database is. You lack basic understanding of database.
10th Apr 2018, 2:55 AM
Akib
Akib - avatar