I'm not sure if I get you Right,
for modelling you can select the columns that you think are important, so there is no Need to delete the column.
You want to delete some rows where a column has the same value?
Below is the Code for it:
Otherwise please describe more in Detail what you Need, an example May be very helpful.
Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
wait(3);
dt << Select duplicate rows( Match( :age ) );
dt << delete rows;
Georg