What's the point of a stored procedure?

前端 未结 12 1103
逝去的感伤
逝去的感伤 2021-01-21 12:13

Are they useful for anything outside of a database administrator? If I understand them correctly it\'s merely queries that can be saved directly into MySQL, so it\'d be useless

12条回答
  •  灰色年华
    2021-01-21 12:27

    Think of a stored procedures as a library function. Do you want to rewrite sqrt (for example) every time you have to compute a square root or would you rather call a function to do it?

    That's the benefit (in a nutshell) of stored procedures.

提交回复
热议问题