Skip to content

Instantly share code, notes, and snippets.

@sqlparser
Created April 9, 2014 02:16
Show Gist options
  • Save sqlparser/10219758 to your computer and use it in GitHub Desktop.
Save sqlparser/10219758 to your computer and use it in GitHub Desktop.
Capitalization alias
SELECT p.name AS PRODUCT,
p.listprice AS 'LIST PRICE',
p.discount AS 'DISCOUNT'
FROM production.product p
JOIN production.productsubcategory s
ON p.productsubcategoryid = s.productsubcategoryid
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment