what is the main difference in between function and stored procedures in postgresql.

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • bhavanik
    New Member
    • May 2010
    • 4

    what is the main difference in between function and stored procedures in postgresql.

    The Postgresql have stored procedures or not.If postgres contain stored procedures what is the difference between function and stored procedures in postgresql?
  • rski
    Recognized Expert Contributor
    • Dec 2006
    • 700

    #2
    What do you mean saying 'stored procedures'?
    In postgres you can write functions which return values or not (mean return void). If function does not return value it behaves as procedure.

    Comment

    Working...