+ 2
What is the difference between SQL and MYSQL?
6 Answers
+ 13
sql is structured query language which is used by RDBMS(relational database management system) like MySQL to manage data in form of relation (tables) .
sql refers to set of commands which are recognised by RDBMS like MySQL .
//hope it helpsâș
https://www.sololearn.com/Discuss/1087693/?ref=app
https://www.sololearn.com/Discuss/973927/?ref=app
+ 6
MySQL is a relational database management system and SQL is the query language used to interact with relational databases. So MySQL is the database itself and SQL is how you interact with that database's data.
+ 3
By the way, it's worth noting that MySQL is just one of many different database systems, and SQL works with most of them. SQL isn't exclusive to MySQL.
+ 2
https://en.wikipedia.org/wiki/MySQL
https://en.wikipedia.org/wiki/SQL
^More information on both.
0
Thank you
0
Thank you