Hi,
Let's you've a database of words as follows:
Code:
column1 column2 column3
cheer town greed
occupy serene addicted
provide astute recoup
The words are fed into the database in no particular order. Is there a way to select all the words from the 3 columns and sort them aphabatically with a mysql query? In order words, the output of the select should be:
addicted
astute
cheer
greed
occupy
provide
recoup
serene
town
(I'm using 4.0.16 so subset is not an option.)
Hope someone can enlighten me
TIA