I've got the following two SQL tables (in proc SQL):
A
+----+------+--------------+
| id | age |
+----+------+
| 1 | 10 |
+----+------+
| 2 | 20 |
+----+------+
| 3 | 30 |
+----+------+
| 4 | 40 |
+----+------+
B
+----+
| id |
+----+
| 1 |
+----
| 2 |
+----+
| 3 |
+----+
The desired output would be: How do I get this output in proc sql
+----+------+
| id | age |
+----+------+
| 4 | 40 |
+----+------+