Hello guys,
I have a simple problem of combining two tables, as shown below. I guess I wasn't able to find the right search terms for what I need. Sorry about the English.
Table 01:
ID | Data
<null> A
<null> B
<null> C
Table 02:
ID | Data
01 <null>
02 <null>
03 <null>
Wanted result (By inserting the fields from Table02 into Table01):
ID | Data
01 A
02 B
03 C
This doesn't seem to work:
INSERT INTO Table01 ( ID )
SELECT Table02.ID
FROM Table02
WHERE (((Table01.ID) Is Null));
(It asks me for the Table01.ID value)
Thank you!
I have a simple problem of combining two tables, as shown below. I guess I wasn't able to find the right search terms for what I need. Sorry about the English.
Table 01:
ID | Data
<null> A
<null> B
<null> C
Table 02:
ID | Data
01 <null>
02 <null>
03 <null>
Wanted result (By inserting the fields from Table02 into Table01):
ID | Data
01 A
02 B
03 C
This doesn't seem to work:
INSERT INTO Table01 ( ID )
SELECT Table02.ID
FROM Table02
WHERE (((Table01.ID) Is Null));
(It asks me for the Table01.ID value)
Thank you!