By default, awk uses any whitespace to separate the input text. You can use the same construct as perl to change the input Field separator:
cat file.tsv | awk -F"\t" '!s[$1]'
The above example will split a file on tabs and then print the unique entries in the first column.