|
Home >> FAQs/Tutorials >> SQL Server FAQ
SQL Server FAQ - Defining and Using Table Alias Names
By: FYIcenter.com
(Continued from previous topic...)
How To Define and Use Table Alias Names?
When column names need to be prefixed with table names, you can define
table alias name and use them to prefix column names.
To define an alias for a table name, just enter the alias name right
after the original table name in the FROM clause as shown in the
following select statement:
SELECT l.id, l.url, r.comment FROM fyi_links l
INNER JOIN fyi_rates r ON l.id = r.id
GO
id url comment
101 dev.fyicenter.com The best
102 dba.fyicenter.com Well done
103 sqa.fyicenter.com Thumbs up
(Continued on next topic...)
- How To Join Two Tables in a Single Query?
- How To Write a Query with an Inner Join?
- How To Define and Use Table Alias Names?
- How To Write a Query with a Left Outer Join?
- How To Write a Query with a Right Outer Join?
- How To Write a Query with a Full Outer Join?
- How To Write an Inner Join with the WHERE Clause?
- How To Name Query Output Columns?
- What Is a Subquery in a SELECT Query Statement?
- How To Use Subqueries with the IN Operators?
- How To Use Subqueries with the EXISTS Operators?
- How To Use Subqueries in the FROM Clause?
- How To Count Groups Returned with the GROUP BY Clause?
- How To Return the Top 5 Rows from a SELECT Query?
- How To Return the Second 5 Rows?
- How To Use UNION to Merge Outputs from Two Queries Together?
- How To Use ORDER BY with UNION Operators
|