Suppose we have this data file.
john 32 maketing executive jack 41 chief technical officer jim 27 developer dela 33 assistant risk management officer
Set the field(s) you want to skip to blank:
awk '{$2 = ""; print $0;}' < file_name
Source: Using awk to print all columns from the nth to the last