5 Apr
2000
5 Apr
'00
8:44 p.m.
Ken Kinder wrote:
I'm using Oracle flavor SQL. Can I use that SQL on more than two? This will eventually be three queries.
Yes. For efficiency's sake, though, you'd probably want to see if you could just combine them into a single statement: select distinct whatever from table where first='foo' or second='bar' or third='baz' . . . This would probably be a much better solution if it's possible with the queries you're using. -CJ