Trying to learn SQL queries, I practice on the data explorer.
I try this query:
Select *
FROM Tags
WHERE TagName = "scala"
but have this error:
Invalid column name 'scala'
Any suggestion what is it going wrong?
use single quotes ('') instead of double quotes ("") for string constants ?