资讯

If possible, creative use of JOIN may provide the same information with less lag time. Using UNION The UNION statement is another way to return information from multiple tables using a single query.
In most implementations of SQL, you pull information from two tables by using a SELECT command in this form: SELECT table1.column1, table1.column2, table2.column1, table2.column2 FROM table1, table2 ...