Like in B4X and most programming languages, a spaceless string of characters beginning with a digit is taken to be a literal number, and a spaceless string of characters beginning with a letter is taken to be an identifier (variable name, or statement, function or operator).
So 000600166 is taken to be a decimal number (or octal in C, Java, etc, because it begins with an otherwise-unnecessary leading 0)
and aaaa000600166 is taken to be an identifier, in this case a column name, resulting in the "no such column" error