I've been getting this error for my excessively long SQL statements.
Does anyone know what the row limit is? Does it vary from system to system?
Since I am (mostly) making criteria statements on every line, could I shorten the number of rows by putting more than one criteria statement per line?
That is
Code:
select blah.colors from blah
where colors are in ("blue",
"red",
"yellow",
"purple",
"green",
"orange",
"muave",
"tangerine")
to :
Code:
select blah.colors from blah
where colors are in ("blue",
"red",
"yellow", "purple",
"green", "orange",
"muave", "tangerine")
(You will have to imagine that my list is very long)
Will this work or
Must I break it up?