I want to know that is there MYSQL Tool available in which we can modify the existing Stored Procedures by using GUI. I do not want to write code manually in the Stored Procedure.
Asked
Active
Viewed 125 times
-1
-
1Please read [Under what circumstances may I add “urgent” or other similar phrases to my question, in order to obtain faster answers?](//meta.stackoverflow.com/q/326569) - the summary is that this is not an ideal way to address volunteers, and is probably counterproductive to obtaining answers. Please refrain from adding this to your questions. – halfer Jan 09 '18 at 15:29
1 Answers
0
(My)SQL is a scripting language (well, actually a query language, but for the purpose of this answer that comes pretty close). It's all about writing text to create commands/queries. How can this be done using a GUI (other than providing a text editor)? I have seen visual query builders in the past and they all suffer from the language's complexity. Most of the time it's easier to see the written text than a graphical view of the query. And as soon as you enter the world of non-trivial queries such query builders will be lost.
So, there's a reason that serious visual query builders are pretty uncommon among the popular MySQL GUI tools.

Mike Lischke
- 48,925
- 16
- 119
- 181