Is there a way to escape the keywords in mySQL. For instance, I want to add an alias name as 'AS'. mySQL is not allowing me to do that because AS is already a keyword.
In the below example, AS is the alias name for the table. SELECT * FROM Astrology AS where AS.column_name is not null;
Note: I remember we use something like [AS] to treat them as normal text in MS-SQL. I would like to know how we could do this in mySql.