A quick search revieled this https://docs.microsoft.com/en-us/azure/app-service/containers/tutorial-php-mysql-app I hope that is something as to what you are looking for.
Database Migrate From MySQL To Azure SQL
Hello Friends,
Right now in my project, we are using MySQL Database. Now we want to implement the Azure SQL Database.
This is my current database driver mentioned below:
'default' => env('DB_CONNECTION', 'mysql')
My Question is Which changes in need to apply in the database driver / what value may I set in place of MySQL in DB_Connection value?
Which steps I need to follow for migrate MySQL to Azure SQL. I am new in Azure SQL. Please help me. Thank In Advance.
According to Microsoft the Azure SQL is basically the latest stable version of SQL Server so switching should not be that hard.
https://docs.microsoft.com/en-us/azure/sql-database/
You could probably get away with just changing your env file to use sql server.
https://barryvanveen.nl/blog/39-connect-to-mssql-database-from-php
Please or to participate in this conversation.