Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
How To Write a Query with an Inner Join
How To Write a Query with an Inner Join? - MySQL FAQs - SQL SELECT Statements with JOIN and Subqueries
✍: 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:
mysql> CREATE TABLE fyi_rates (id INTEGER, comment VARCHAR(16)); mysql> INSERT INTO fyi_rates VALUES (101, 'The best'); mysql> INSERT INTO fyi_rates VALUES (102, 'Well done'); mysql> INSERT INTO fyi_rates VALUES (103, 'Thumbs up'); mysql> INSERT INTO fyi_rates VALUES (204, 'Number 1'); mysql> INSERT INTO fyi_rates VALUES (205, 'Not bad'); mysql> INSERT INTO fyi_rates VALUES (206, 'Good job'); mysql> INSERT INTO fyi_rates VALUES (207, 'Nice tool'); mysql> SELECT fyi_links.id, fyi_links.url, fyi_rates.comment FROM fyi_links INNER JOIN fyi_rates ON fyi_links.id = fyi_rates.id; +-----+-------------------+-----------+ | id | url | comment | +-----+-------------------+-----------+ | 101 | dev.fyicenter.com | The best | | 102 | dba.fyicenter.com | Well done | | 103 | sqa.fyicenter.com | Thumbs up | +-----+-------------------+-----------+ 3 rows in set (0.49 sec)
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.
2007-05-11, 5122👍, 0💬
Popular Posts:
What is the value of this expression? +1-2*3/4 -0.5
What is the benefit of using an enum rather than a #define constant? The use of an enumeration const...
Write down the equivalent pointer expression for referring the same element a[i][j][k][l]? a[i] == *...
.NET INTERVIEW QUESTIONS - Where do you specify session state mode in ASP.NET ? The following code e...
Can we get a strongly typed resource class rather than using resource manager? In the previous quest...