Hi all:
I have a strong suspicion this won't fly, but can you use LIMIT with %? For example, LIMIT 50%?
I want to set up a table with 2 columns. The first column has the 1st 50% of the results, the second column has the second 50%. There doesn't seem to be any clean way to do this.
My thought is to first run a SQL statement that just gets a total count. Then run a SQL statement with the LIMIT being 1/2 the results of the first statement, then a third SQL statement using LIMIT X , X with X being that same 1/2 number.
It just seems like a lot to have to run 3 statements to accomplish this.
Thanks!