How do I delete a column from a table?
The delete command works for that, too. To remove a column named xyz from table t, use
delete xyz from `t // in place delete (backquote)
delete xyz from t // returns a copy minus column xyz
The delete command works for that, too. To remove a column named xyz from table t, use
delete xyz from `t // in place delete (backquote)
delete xyz from t // returns a copy minus column xyz