Ask Your Question
2

How can values from Table B be inserted into Table A using Inner Join or where condition in SQL?

asked 2022-11-26 11:00:00 +0000

djk gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
2

answered 2022-05-05 18:00:00 +0000

qstack gravatar image

To insert values from Table B into Table A using Inner Join or where condition in SQL, you can use the INSERT INTO... SELECT statement with the INNER JOIN or WHERE clause to specify the matching records in both tables.

The syntax for this statement is as follows:

INSERT INTO TableA (column1, column2, ...)
SELECT TableB.column1, TableB.column2, ...
FROM TableA
INNER JOIN TableB ON TableA.key = TableB.key
WHERE TableB.condition = value

The above statement will insert selected columns from Table B into Table A where the key column in Table A matches the key column in Table B and the condition in Table B is equal to the specified value.

Note: The columns in both tables should have the same data type and size.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2022-11-26 11:00:00 +0000

Seen: 14 times

Last updated: May 05 '22