'how to link two tables in the same database?
Trying to link two tables that are in one database please help with syntax
Solution 1:[1]
BASIC syntax to join two tables
SELECT *
FROM table1
JOIN table2 ON table1.column_to_based_the_join_on= table2.column_to_based_the_join_on
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | matias cantella |
