Converting T-SQL to PostgreSQL - Mailing list pgsql-sql

From maboyz
Subject Converting T-SQL to PostgreSQL
Date
Msg-id 26221691.post@talk.nabble.com
Whole thread Raw
Responses Re: Converting T-SQL to PostgreSQL  (Pavel Stehule <pavel.stehule@gmail.com>)
List pgsql-sql
I am trying to re write the following stored proc as a postgresql
function......but am new to postgres and it is kind of getting really
confusing trying to learn and let alone understand the syntax:

CREATE PROCEDURE [dbo].[GetAppAvailability]@AuditAvailable        bit output,@BillingAvailable    bit
output,@ReturnValue       int output
 
AS
SET NOCOUNT ON

set @AuditAvailable = (select app_Status from AppAvailability where
app_Functionality = 'Audit')
set @BillingAvailable = (select app_Status from AppAvailability where
app_Functionality = 'Billing')

Set @ReturnValue = @@Error

I have this in postgres but obviously it is not correct:

CREATE OR REPLACE FUNCTION GetAppAvailability(OUT auditAvailable character
varying, OUT billingAvailable character varying)  AS
$BODY$    set $1 = (select "app_Status" from "AppAvailability" where
"app_Functionality" = 'Audit');   set $2 = (select "app_Status" from "AppAvailability" where
"app_Functionality" = 'Billing');$BODY$ LANGUAGE 'sql' VOLATILE COST 100;



-- 
View this message in context: http://old.nabble.com/Converting-T-SQL-to-PostgreSQL-tp26221691p26221691.html
Sent from the PostgreSQL - sql mailing list archive at Nabble.com.



pgsql-sql by date:

Previous
From: Tom Lane
Date:
Subject: Re: Learning about WITH RECURSIVE
Next
From: Pavel Stehule
Date:
Subject: Re: Converting T-SQL to PostgreSQL