..
To create a relationship between more than two tables in SQL we can use the traditional method, or the JOIN statement.
Imagine the following tables, composed of the respective fields:
SELECT * FROM authors, publishers, books WHERE aut_id = lib_autore AND edi_id = lib_editoreWe see the method that provides education JOIN:
SELECT * FROM authors INNER JOIN books ON = autori.aut_id libri.lib_autore INNER JOIN publishers ON = libri.lib_editore editori.edi_id
| |
MS Access (Advanced)
Learn how to create and manage databases quickly and easily. Starting from 29 €. |
| |
MySQL (Course)
Management of open-source database. From 39 €. |
| |
SQL and Database (Course)
Create and manage relational databases. From 39 €. |