Thread: Passing input to a view?

Passing input to a view?

From
Paul Lambert
Date:
Is it possible to define a view to use input parameters rather than a 
hard-wired value in a where clause?

I.e. I have the following view:

CREATE OR REPLACE VIEW invoiced_repairs AS
SELECT ro_header.ro_number, ro_header.received_date, vehicles.vehicle_id,vehicles.model, vehicles.engine,
vehicles.transmission,
 
ro_header.odometer_reading,ro_header.service_description,(         CASE WHEN (vehicles.month_of_manufacture <> '' AND 
vehicles.year_of_manufacture <> '') THEN    (vehicles.month_of_manufacture || '/' || vehicles.year_of_manufacture) ELSE
  ''         END        ) AS date_of_manufacture,vehicles.identification_number, vehicles.engine_number from ro_header
 
INNER JOIN vehicles USING (vehicle_address)
WHERE ro_header.received_date between '1-jan-2007' AND '10-May-2007';
ALTER TABLE invoiced_repairs OWNER TO postgres;

Instead of having it set to 1-Jan-2007 and 10-May-2007 for the dates, 
can I specify that those values should be passed to the view? Or would I 
need to change this to an SQL language function?

I can't find anything in the documentation that answers this, but maybe 
I'm not looking hard enough.

Thanks in advance.

-- 
Paul Lambert
Database Administrator
AutoLedgers



Re: Passing input to a view?

From
"A. Kretschmer"
Date:
am  Thu, dem 10.05.2007, um 14:03:53 +0800 mailte Paul Lambert folgendes:
> Is it possible to define a view to use input parameters rather than a 
> hard-wired value in a where clause?

As far as i know, no.


> Instead of having it set to 1-Jan-2007 and 10-May-2007 for the dates, 
> can I specify that those values should be passed to the view? Or would I 
> need to change this to an SQL language function?
> 
> I can't find anything in the documentation that answers this, but maybe 
> I'm not looking hard enough.

You can write a so called 'set returning function' instead.
Read more:
http://www.postgresql.org/docs/current/static/xfunc-sql.html#XFUNC-SQL-TABLE-FUNCTIONS


Andreas
-- 
Andreas Kretschmer
Kontakt:  Heynitz: 035242/47150,   D1: 0160/7141639 (mehr: -> Header)
GnuPG-ID:   0x3FFF606C, privat 0x7F4584DA   http://wwwkeys.de.pgp.net


Re: Passing input to a view?

From
"Phillip Smith"
Date:
Remove the WHERE clause that specifies the date so the view includes all
dates, then apply the WHERE clause when selecting the view.

SELECT    *
FROM        invoiced_repairs
WHERE        invoiced_repairs.received_date BETWEEN '1 Jan 2007' AND '10
May 2007';


-----Original Message-----
From: pgsql-sql-owner@postgresql.org [mailto:pgsql-sql-owner@postgresql.org]
On Behalf Of Paul Lambert
Sent: Thursday, 10 May 2007 16:04
To: pgsql-sql@postgresql.org
Subject: [SQL] Passing input to a view?

Is it possible to define a view to use input parameters rather than a
hard-wired value in a where clause?

I.e. I have the following view:

CREATE OR REPLACE VIEW invoiced_repairs AS
SELECT ro_header.ro_number, ro_header.received_date, vehicles.vehicle_id,vehicles.model, vehicles.engine,
vehicles.transmission, 
ro_header.odometer_reading,ro_header.service_description,(         CASE WHEN (vehicles.month_of_manufacture <> '' AND
vehicles.year_of_manufacture <> '') THEN    (vehicles.month_of_manufacture || '/' ||
vehicles.year_of_manufacture) ELSE    ''         END        ) AS date_of_manufacture,vehicles.identification_number,
vehicles.engine_numberfrom 
ro_header
INNER JOIN vehicles USING (vehicle_address)
WHERE ro_header.received_date between '1-jan-2007' AND '10-May-2007';
ALTER TABLE invoiced_repairs OWNER TO postgres;

Instead of having it set to 1-Jan-2007 and 10-May-2007 for the dates,
can I specify that those values should be passed to the view? Or would I
need to change this to an SQL language function?

I can't find anything in the documentation that answers this, but maybe
I'm not looking hard enough.

Thanks in advance.

--
Paul Lambert
Database Administrator
AutoLedgers


---------------------------(end of broadcast)---------------------------
TIP 1: if posting/reading through Usenet, please send an appropriate      subscribe-nomail command to
majordomo@postgresql.orgso that your      message can get through to the mailing list cleanly 


*******************Confidentiality and Privilege Notice*******************

The material contained in this message is privileged and confidential to
the addressee.  If you are not the addressee indicated in this message or
responsible for delivery of the message to such person, you may not copy
or deliver this message to anyone, and you should destroy it and kindly
notify the sender by reply email.

Information in this message that does not relate to the official business
of Weatherbeeta must be treated as neither given nor endorsed by Weatherbeeta.
Weatherbeeta, its employees, contractors or associates shall not be liable
for direct, indirect or consequential loss arising from transmission of this
message or any attachments