Viewing 4 posts - 1 through 4 (of 4 total)
No literally, it's just "select * from event" ! It's an extreme example both due to it's simplicity and the size of the discrepancy, but very useful to illustrate my problem......
June 15, 2007 at 7:41 am
Thanks Colin. In my experience QA usually does report worktable stats, but anyway in the case of the query I was using ("select * from table"), there are no disincts,...
June 15, 2007 at 7:00 am
Thanks Lucy, that article makes sense - it doesn't really explain the huge differences I'm seeing though. Discrepancies in the hundreds, or even a few thousand, I can understand and...
June 12, 2007 at 1:55 am
Also you could consider using Unions i.e.
select *
from table1
where field1 = 'Row5'
union
select *
from table1
where field1 = 'Row3'
union
select *
from table1
where field1 = 'Row6'
union
select *
from table1
where field1 = 'Row100'
...slightly less readable than...
May 17, 2002 at 10:48 am
Viewing 4 posts - 1 through 4 (of 4 total)