Drop a stored procedure? #1181
-
What is the proper syntax for deleting/droping a stored procedure(s) from SQL database in SQLAlchemy-flask? I am using flask_sqlalchemy version as 3.0.3. |
Beta Was this translation helpful? Give feedback.
Answered by
Engr-Asad-Hussain
Mar 22, 2023
Replies: 1 comment
-
Oh I found the answer, |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
Engr-Asad-Hussain
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Oh I found the answer,
DROP FUNCTION
statement is not working, insteadDROP PROCEDURE
can be used alternatively.