From the google cloud documentation, I see:
Each table has only one index, the row key
However, I see someone mentioned (I can not find the source anymore) big table has index for every column. The column is indexed by index key. So, big table can locate a column very fast by the index key. Index Key = Row Key + ColumnFamily:ColumnQualifier + timestamp
Is above statement true?
No, Bigtable does not have individual indexes for every column. It has only one primary index known as row key.
As mentioned in this document.