Hello @Venkata Yeleswarapu
Thank you for reaching out to the Microsoft Q&A platform.
You are right! SQL Server 2022 with Windows Server 2019 image is not available in the Azure Marketplace currently.
One option you can consider is to create a new Azure VM with Windows Server 2019 and install SQL Server 2022 manually. This would involve selecting the appropriate Windows Server 2019 image from the Azure Marketplace, provisioning a new VM, and then installing SQL Server 2022 on the new VM.
It is important to note that the availability of Azure VM images can vary depending on the region or subscription. To view all available images using PowerShell, use the following command:
Get-AzVMImageOffer -Location $Location -Publisher 'MicrosoftSQLServer'
As per the document, below are the combination available :
https://learn.microsoft.com/en-us/azure/azure-sql/virtual-machines/windows/sql-server-on-azure-vm-iaas-what-is-overview?view=azuresql#payasyougo
Note: Regardless of the approach you choose, it is important to thoroughly test your new SQL Server environment before migrating any production workloads to it to ensure that it meets your performance, security, and reliability requirements.
--please don't forget to upvote and Accept as answer if the reply is helpful--