I am Using Access VBA to read from a temp table and then inserting those values to another table, But i am getting blank rows while Inserting. I need a way to remove the blank rows.
Table A Table B
A B C D ID B
1 1 1 1 1 1
1 1 1 2 1
1 1 3
**Expected Result**
Table B
ID B
1 1
2 1
i am Inserting column B from Table A to Table B but i am getting one blank row which is not required
INSERT INTO TABLE_B(B) SELECT B FROM TABLE_A WHERE B is not null;"
INSERT INTO TABLE_B(B) SELECT B FROM TABLE_A WHERE B & "" <> ""- June7