I am trying to execute a simple query on SQL Fiddle
select name as 'user_name' from user_data;
But in the output, the column's alias name is not showing. Instead of showing user_name, it is just showing simply as name.
But when i print a simple query like this..
Select 1 as 'one',2 as 'old'
For the above query, it is showing correct output means Alias name are being displayed.
I have already tried these queries..
select name as user_name from user_data;
select name user_name from user_data;
select name 'user_name' from user_data;
Here is a live link.
So i want to know if there is something wrong with my query or it's just a SQL Fiddle limitation?
Note: I am using MySql 5.6