Re: Inserting an IF statement in the middle of a SELECT in pl/pgSQL code - Mailing list pgsql-sql

From Fernando Hevia
Subject Re: Inserting an IF statement in the middle of a SELECT in pl/pgSQL code
Date
Msg-id 016f01c7c939$abeaa930$8f01010a@iptel.com.ar
Whole thread Raw
In response to Inserting an IF statement in the middle of a SELECT in pl/pgSQL code  (Norm Garand <indianlakesolutions@rogers.com>)
List pgsql-sql
You should try 'Coalesce' function. 

By the way, your "incident_date-to-quarter" expression could be shortened:

SELECT DISTINCT(pi.serial_number) AS "Incident ID",to_char(pi.incident_date,'Mon-dd-yyyy') AS "Incident
date",to_char(pi.date_created,'Mon-dd-yyyy')AS "Report Date",(((EXTRACT (MONTH FROM pi.incident_date ))::integer - 1) /
3)+ 1 AS
 
Quarter...


Regards,
Fernando.


-----Mensaje original-----
De: pgsql-sql-owner@postgresql.org [mailto:pgsql-sql-owner@postgresql.org]
En nombre de Norm Garand
Enviado el: Martes, 17 de Julio de 2007 23:43
Para: pgsql-sql@postgresql.org
Asunto: [SQL] Inserting an IF statement in the middle of a SELECT in
pl/pgSQL code

Hi:

I can't seem to resolve this issue. I have a fair sized SELECT statement
that runs properly in a
stored procedure using pl/pgSQL, but I have certain parts of the query that
can filter by a NULL
value, or a character string.
What I can't seem to do is insert a conditional IF statement in my code.

Here is how it starts:

DECLARE
r zrec_dd_holder%rowtype;
BEGIN
FOR r IN 

SELECT DISTINCT(pi.serial_number) AS "Incident ID",to_char(pi.incident_date,'Mon-dd-yyyy') AS "Incident
date",to_char(pi.date_created,'Mon-dd-yyyy')AS "Report Date",
 
CASE   WHEN EXTRACT ( MONTH FROM pi.incident_date ) = 1 THEN 1  WHEN EXTRACT ( MONTH FROM pi.incident_date ) = 2 THEN 1
WHEN EXTRACT ( MONTH FROM pi.incident_date ) = 3 THEN 1 WHEN EXTRACT ( MONTH FROM pi.incident_date ) = 4 THEN 2  WHEN
EXTRACT( MONTH FROM pi.incident_date ) = 5 THEN 2  WHEN EXTRACT ( MONTH FROM pi.incident_date ) = 6 THEN 2  WHEN
EXTRACT( MONTH FROM pi.incident_date ) = 7 THEN 3  WHEN EXTRACT ( MONTH FROM pi.incident_date ) = 8 THEN 3  WHEN
EXTRACT( MONTH FROM pi.incident_date ) = 9 THEN 3  WHEN EXTRACT ( MONTH FROM pi.incident_date ) = 10 THEN 4  WHEN
EXTRACT( MONTH FROM pi.incident_date ) = 11 THEN 4  WHEN EXTRACT ( MONTH FROM pi.incident_date ) = 12 THEN 4 END AS
"Quarter",
pf.name  AS "Facility",pl.name  AS "General Location",f.long_desc  AS "Specific Location", 
......

The user can choose to allow the default (in this case NULL) or supply a
predetermined value for
"Specific Location".

In the WHERE portion of the SELECT statment, I'd like to insert the IF
statement shown below. I've
tried single and double quotes and the pipeline for concatenation, but
nothing seems to work. Any
suggestions or resolutions would be greatly appreciated. Please feel free to
contact me directly.

AND pi.id = pid.idAND ( pid.incident_type_cid BETWEEN 117 AND 123 )

/--------------- IF $7 IS NOT NULL THEN AND f.id = pid.specific_location_cid AND f.long_desc = $7 END IF
---------------/ 
AND ( pi.location_id = pl.id )AND pf.id = pl.facility_idAND pi.person_status_code_id = b.id



regards,

Norm

---------------------------(end of broadcast)---------------------------
TIP 2: Don't 'kill -9' the postmaster



pgsql-sql by date:

Previous
From: "Ashish Karalkar"
Date:
Subject: Birth Day Calculation
Next
From: Osvaldo Rosario Kussama
Date:
Subject: Re: Birth Day Calculation