Is it possible to pass a parameter(date) to the location of the Azure Synapse External Table?
LOCATION='/Windows/Folder/File_name_yyyy-MM-dd.csv'
I want to parameterise yyyy-MM-dd and File_name_yyyy-MM-dd.csv as a parameter which changes every day. I tried all below, but nothing allows me to create the table due to syntax errors -
LOCATION->'/Windows/Folder/File_name_'format(getdate(),'yyyy-MM-dd')'.csv'
LOCATION->'/Windows/Folder/File_name_'{format(getdate(),'yyyy-MM-dd')}'.csv'
LOCATION->'/Windows/Folder/File_name_'@{format(getdate(),'yyyy-MM-dd')}'.csv'