简体   繁体   中英

Select all columns from one table and some from another table

How do you select all the columns from one table and just some columns from another table using JOIN? In SQL.

SELECT A.*, B.column1, B.column2
FROM A
LEFT JOIN B ON A.id=B.column3

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM