Answers

Question and Answer:

  Home  MS SQL Server

⟩ How To Define and Use Table Alias Names in MS SQL Server?

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 ggl_links l

INNER JOIN ggl_rates r ON l.id = r.id

GO

id url comment

101 www.rendc.org The best

102 www.rendc.org/html Well done

103 www.rendc.org/sql Thumbs up

 158 views

More Questions for you: