In Teradata, a HELP STATISTICS TABLE_NAME returns the date, time, and number of unique values by column name, in the format:
DATE TIME UNIQUE VALUES COLUMN NAME
5/5/2002 7:00am 84,000 ACCOUNT_ID
The question is, I can't figure out how to parse through the column COLUMN NAME since it has a space. For example:
<cfif #query.COLUMN NAME# is "ACCOUNT_ID">
failes on the NAME part. Apparently doesn't like the space. Can anyone make a suggestion on this?
DATE TIME UNIQUE VALUES COLUMN NAME
5/5/2002 7:00am 84,000 ACCOUNT_ID
The question is, I can't figure out how to parse through the column COLUMN NAME since it has a space. For example:
<cfif #query.COLUMN NAME# is "ACCOUNT_ID">
failes on the NAME part. Apparently doesn't like the space. Can anyone make a suggestion on this?