Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have two tables:
| Fruit | Color |
|---|---|
| Apple | Red |
| Banana | Yellow |
| Orange | Orange |
| Table 2 |
|---|
| X |
| Y |
| Z |
How do I load Table 2 with all rows, color = red for example?
Thanks in advance!
-Jason
something like this:
Load
Field1,
'Red' as Color
FROM/RESIDENT
...
something like this:
Load
Field1,
'Red' as Color
FROM/RESIDENT
...
Awesome, thank you Oleg!