Collections:
"INNER JOIN ... ON" - Writing Queries with Inner Joins in SQL Server
How To Write a Query with an Inner Join in SQL Server?
✍: FYIcenter.com
If you want to query from two tables with an inner join, you can use the INNER JOIN ... ON clause in the FROM clause. The tutorial exercise below creates another testing table and returns output with an inner join from two tables: fyi_links and fyi.rates. The join condition is that the id in the fyi_links table equals to the id in the fyi_rates table:
CREATE TABLE fyi_rates (id INTEGER, comment VARCHAR(16)) GO INSERT INTO fyi_rates VALUES (101, 'The best') GO INSERT INTO fyi_rates VALUES (102, 'Well done') GO INSERT INTO fyi_rates VALUES (103, 'Thumbs up') GO INSERT INTO fyi_rates VALUES (204, 'Number 1') GO INSERT INTO fyi_rates VALUES (205, 'Not bad') GO INSERT INTO fyi_rates VALUES (206, 'Good job') GO INSERT INTO fyi_rates VALUES (207, 'Nice tool') GO SELECT fyi_links.id, fyi_links.url, fyi_rates.comment FROM fyi_links INNER JOIN fyi_rates ON fyi_links.id = fyi_rates.id GO id url comment 101 dev.fyicenter.com The best 102 dba.fyicenter.com Well done 103 sqa.fyicenter.com Thumbs up
Note that when multiple tables are used in a query, column names need to be prefixed with table names in case the same column name is used in both tables.
Note also that there are a number of rows from both tables did not return in the output because they did meet the join condition.
⇒ Defining and Using Table Alias Names in SQL Server
⇐ Joining Two Tables in a Single Query in SQL Server
⇑ Using SELECT Statements with Joins and Subqueries in SQL Server
2016-10-30, 2457🔥, 0💬
Popular Posts:
How To Create a Stored Program Unit in Oracle? If you want to create a stored program unit, you can ...
Where to find answers to frequently asked questions on INSERT, UPDATE and DELETE Statements in MySQL...
How To Convert Numeric Values to Integers in SQL Server Transact-SQL? Sometimes you need to round a ...
How To Present a Past Time in Hours, Minutes and Seconds in MySQL? If you want show an article was p...
How To Get Year, Month and Day Out of DATETIME Values in SQL Server Transact-SQL? You can use DATEPA...