How to use Alias for columns in SQL

3 Answers

0 votes
SELECT FirstName AS fn
FROM Workers

 



answered Sep 18, 2015 by avibootz
0 votes
-- Work with MySQL

SELECT DISTINCT category AS 'c t' -- Two words quotes around column alias
FROM info_table

-- Use with $row['c t']

 



answered Sep 18, 2015 by avibootz
edited Sep 18, 2015 by avibootz
0 votes
-- Work with MySQL

SELECT CONCAT(category,',',info) AS ci
FROM info_table

-- Use with $row['ci']

 



answered Sep 18, 2015 by avibootz
...