In SQL, it seemed as though most of the tasks are manually done, someone has to perform the queries. Can it be automated? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

In SQL, it seemed as though most of the tasks are manually done, someone has to perform the queries. Can it be automated?

19th Dec 2019, 3:10 PM
Odiaka Daniel IDUH
Odiaka Daniel IDUH - avatar
2 Answers
+ 1
SQL is basically just the interface language to access the database from elsewhere. Most people probably use SQL from PHP. be warned though - it is very easy to open up your database to SQL injection, cross site scripting and other kinds of exploits. it's alright for learning purposes, but to create a secure application with PHP/SQL, you require a deep understanding of both. if you just want to practice or play around, I suggest downloading XAMPP and learning PHP. for a real application you might want to use a framework such as laravel or symfony. however, you have options beyond php. Python for example can utilize SQL in many ways. web frameworks to check out would be Flask+SQLAlchemy, or Django for bigger projects. anyway, most programming languages in use today probably allow accessing databases, and SQL is usually the means to do so. this allows interactive as well as automated queries by yourself and/or other users.
20th Dec 2019, 2:36 PM
grdr
0
Thanks a lot. I will check out your recommendations. Thanks for your time
20th Dec 2019, 11:09 PM
Odiaka Daniel IDUH
Odiaka Daniel IDUH - avatar