I have a Serverless SQL pool set up in Azure Synapse Analytics, and I am trying to run this query:
CREATE DATABASE SCOPED CREDENTIAL myCredential
WITH IDENTITY = 'test',
SECRET = 'test2';
When I run the query I get this error: Incorrect syntax near 'IDENTITY'.
How can I correct this issue?