0
How to retrieve data from more than one tables at the same time in sql
Select values from two or more tables simultaneously in a single query
5 Respuestas
+ 8
Use JOIN to combine multiple fields from several tables:
https://www.sololearn.com/learn/SQL/1865/
+ 6
Rafey Iqbal Rahman those are called ”columns”. Table is the thing that contains those and usually comes after ”from” keyword.
0
Suppose you have a CLIENTS SQL database with three tables FirstName, LastName, FatherName. You want to select the first two tables. This is done by:
SELECT FirstName, LastName
FROM clients;
Note you can select multiple tables just by adding commas.
0
Toni Isotalo those are called table columns.
0
Toni Isotalo you can view yourself: https://www.sololearn.com/learn/SQL/1852/