The table concept is terminated by “→”?
Field separator is "\t"
(rendered as → in your editor), line separator is "\n"
(as LF
).
The last field (invalid_reason
) is NULL
, so there is no value between the last "\t"
and the finishing "\n"
.
Ref: Wikipedia on Tab-separated values
@seanzhang924926 And in this case it is terminated by \t
, because the last column is an empty field (the empty_reason
). If you scroll down in the list, you should encounter some rows where it is filled with a ‘D’ (for deleted) or ‘U’ (for updated).
Thank you.
Thank you very much.