Suggest me a best language for database management | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Suggest me a best language for database management

26th May 2023, 5:29 AM
Alpaksh Dogra
Alpaksh Dogra - avatar
3 Answers
+ 3
There is no single best language. First of all, there are different types of databases: Relational databases use SQL as their query language. Other types of databases include key-value stores, object storage, columnar database, graph db, and many other innovative ideas - each of them have their own unique way and language (typically it is very similar to SQL). You can usually use SQL directly from any general programming language, but usually there are also API's, libraries and frameworks in each language for database communication. One very common way is to use ORM (object relational mapper) solutions, which creates an automatic mapping between the database tables, and the OOP class hierarchy of your code.
26th May 2023, 1:34 PM
Tibor Santa
Tibor Santa - avatar
+ 2
It is a very simple answer SQL is always at the top. then PHP after that we have Python, R,...
26th May 2023, 6:10 AM
I am offline
I am offline - avatar
0
SQL is the language that is used to create, manage and delete a database. Try searching for some online course for SQL, as Sololearn, doesn't provide a course for this language yet.
27th May 2023, 5:33 PM
Danish Zubair
Danish Zubair - avatar