List common data between two tables based on a join key in MySQL
Guide on writing a MySQL query to list common data between two tables based on a join key. This SQL command helps in finding records that are present in both tables.
SELECT t1.id, t1.date, t2.title
FROM table1 t1
INNER JOIN table2 t2 ON t1.id = t2.table1_id;
Detailed explanation:
-
INNER JOIN
: Combinestable1
withtable2
based on the conditiont1.id = t2.table1_id
.INNER JOIN
retrieves records that have matches in both tables, meaning only rows whereid
intable1
also exists intable2
are included. -
SELECT t1.id, t1.date, t2.title
: Chooses columns from both tables to display the common data. Here,id
anddate
fromtable1
andtitle
fromtable2
are selected.
MySQL Version:
This SQL query works on MySQL versions from 5.0 and above, as basic operations like INNER JOIN
are supported in these versions.