awk:
awk '{print (NF>1) ? $1 : ""}' file
If the number of fields is more than 1, print the first field, otherwise print an empty line.
A couple of extra thoughts:
* If your data is tab-separated, then
awk -F '\t' '{print $1}' file
* If you want to extract the first 8 characters
awk '{print substr($0,1,8)}' file