Hello.
I have got a table where one of the columns has an enum column type. The column heading is "State" The enum string within the "State" column contains all of the fifty states of the union like so:
column heading: "State" enum( 'Alabama', 'Alaska', 'Arizona', 'Arkansas', ... and so forth)
My question is: Can I loop through the State column heading and extract each of the fifty enum values (or states) and output them on the page?
// example page output
Alabama
Alaska
Arizona
.....
If so, can anybody give me an idea about how it can be done?
Thanks.