I need to selectively (both rows and columns) export around 20 million rows from one table to another. This is what I tried:...--Run this in batch:
INSERT INTO Table 2
Select A, B from Table1
where A > a and B < b
---Table1 have columns A, B....Z and go...