Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> Re: Where 1 = 1
I've never used it with a monster query but I do use it's inverse all the time.
Create table test1 as (select * from test2 where 1=0);
This creates a copy of the structure of the original. Leave off the where and you also copy the data. Maybe they just want to make explicit that which is implicit.
Ed Bittel <bitlist To: Multiple recipients of list ORACLE-L @yahoo.com> <ORACLE-L_at_fatcity.com> Sent by: root cc: Subject: Where 1 = 1 10/25/2001 08:20 PM Please respond to ORACLE-L
I was monitoring a load test of my company's new application when I came across something interesting. One of the more monstrous queries had the following as part of its WHERE clause: 'AND 1 = 1'
Has anyone seen this used before? What is it supposed to achieve?
-- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Ed Bittel INET: bitlist_at_yahoo.com Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051 San Diego, California -- Public Internet access / Mailing Lists -------------------------------------------------------------------- To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-LReceived on Fri Oct 26 2001 - 07:46:23 CDT
(or the name of mailing list you want to be removed from). You may
also send the HELP command for other information (like subscribing). -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: INET: tday6_at_csc.com Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051 San Diego, California -- Public Internet access / Mailing Lists -------------------------------------------------------------------- To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from). You may
also send the HELP command for other information (like subscribing).
![]() |
![]() |