Videos
What is the major difference between MySQL and SQL?
What Programs use SQL and MySQL?
Which is better, MySQL or SQL?
Why would w3schools have two different tutorial sets for SQL and MySQL?
I know that SQL is querying language and MySQL is a DBMS.
I compared a few topics and those are word by word identical.
Does anyone knows what is the purpose of both of these tutorials existing?
SQL - Structured Query Language. It is declarative computer language aimed at querying relational databases.
MySQL is a relational database - a piece of software optimized for data storage and retrieval. There are many such databases - Oracle, Microsoft SQL Server, SQLite and many others are examples of such.
SQL is Structured Query Language
MySQL is a relational database management system. You can submit SQL queries to the MySQL database to store, retrieve, modify or delete data.
I want to be data scientist so some told me to learn sql but i found mysql .. so i am curious about the difference between Sql and mysql
SQL stands for "Structured Query Language." It's the language used to perform queries as by most database vendors.
MySQL is a specific product that uses the SQL language.
Put another way:
SQL = the English Language
MySQL = some novel that was written using the English language
All of the different databases have their own dialect of SQL. They're 95% identical, and it's pretty easy to pick up a new dialect, so it's not a big deal. Just be aware of that fact.