How do I save my queries for future use?
I know that DataGrip automatically stores query history and I can use them again from history view.
However, how do I save my queries explicitly?
On other application (e.g. Sequel Pro), you can save queries with specific names, or at least export sql files without copying/pasting manually.
请先登录再写评论。
Hi,
>> However, how do I save my queries explicitly?
As a workaround, you should create SQL files and run queries by attaching console. Then you can put your SQL files under version control. E.g.:
Thank you.