From: cfowler at outpostsentinel.com (Christopher Fowler)
Date: Thu Apr 1 09:06:37 2004
I do the following select statements to get a username out of a
database.
SELECT USER_ID from ALARMS where ID = 1;
SELECT * from USERS where ID = '<USER_ID from above>';
I want to speed this up. Can I consolidate into one SQL statement?