Reputation: 83
I am learning azure from Microsoft learn using this link. Does anyone know the basic difference between "Azure Database for MySQL" and "Azure SQL Database"? Both seem very similar.
As I am a beginner, can anyone explain the difference in an easy way?
Upvotes: 4
Views: 11598
Reputation: 1
MySQL is not open source. It is Open Source if Open Source means started by few braves, taken over by corporations!
Upvotes: 0
Reputation: 6043
Add to @CoderRambo's answer. The difference between Azure Database for MySQL
and Azure SQL Database
is as follows:
Azure Database for MySQL
is powered by the MySQL community edition. We can choose versions 5.6, 5.7, and 8.0.Azure SQL Database
is SQL Server database engine, based on the latest stable Enterprise Edition of SQL Server.The only similarity is: they are all hosted in the Microsoft cloud and fall into the industry category of Platform-as-a-Service (PaaS). So your question is mysql vs sql server
.
Upvotes: 7
Reputation: 402
ok lets start with what is common for both. with Azure prefixed, both are installed in cloud and managed by Microsoft. Meaning Microsoft is responsible for the databases to be installed, up and running with 0 or minimal downtime. I think this is clear.
Now lets start with differences. Please visit the links below and let me know if you have any issues. Thanks!
https://www.guru99.com/sql-vs-mysql.html
https://www.javatpoint.com/mysql-vs-sql
Upvotes: 0
Reputation: 402
Mysql is opensource database, where as when you say SQL it refers to Microsoft SQL Server. In general both are two different types of databases. Microsoft SQL Server is a licensed version.
When you prefix them with Azure, it means they are hosted on cloud , i.e Azure cloud and Microsoft manages them as PAAS(platform as a service).
Kindly let me know if you need more information.
Upvotes: 0