Create Stored procedure

Started by Martin Paulďuroabout 23 years ago1 messagesgeneral
Jump to latest
#1Martin Paulďuro
martin.paulduro@smeonline.sk

I can write stored procedure. My procedure in mssql is:

CREATE PROCEDURE sp_list AS
select id, name, phone, comment from user where (id>100) order by name
GO

How can I create this procedure in psql ?

Thanks. Matop.