I tried the following SQL on this example playground page from W3Schools.
SELECT CustomerID AS Id, CustomerName AS Customer
FROM Customers
WHERE Customer="Alfreds Futterkiste";
But I get No value given for one or more required parameters.
as response.
It works if I use CustomerName
instead of the alias.
Is this a fail of the playground test page or is it just not possible?