DROP
edit
Use DROP
to remove columns:
FROM employees | DROP height
Rather than specify each column by name, you can use wildcards to drop all columns with a name that matches a pattern:
FROM employees | DROP height*
DROP
editUse DROP
to remove columns:
FROM employees | DROP height
Rather than specify each column by name, you can use wildcards to drop all columns with a name that matches a pattern:
FROM employees | DROP height*