While it may not be apparent through the backend, there are indeed several methods available for migrating data from an on-premises SQL Server database to an Azure SQL database.
The following are some of the methods that can be used for data migration:
- Create BACPAC files and export them
- Use SQL Server Management Studio; generate scripts and use the import/export data methods
- Use the Data Migration Assistant Wizard
- Leverage Transactional Replication to port the data over to the cloud
- Use PowerShell and SQLPackage.exe, an SSDT tool
Here is a Migration guide: SQL Server to Azure SQL Database
And the blog- https://www.sqlshack.com/migrate-an-on-premises-sql-server-database-to-the-azure-sql-database/
Let us know if you need any additional information.
Thank you!