Have you tried "print $0"? It should print the whole record.
Try the following if your file is not zipped:
awk 'BEGIN{FS="\t"}{if ($column_num=="1") print $0}' filename
Try the following if your file is zipped:
zcat filename | awk 'BEGIN{FS="\t"}{if ($column_num=="1") print $0}'