LIST_SAVED_QUERIES¶
LIST_SAVED_QUERIES
lists the available previously saved queries.
This is an alternative way to using the savedqueries
catalog view.
Read more in the Saved Queries guide.
See also: ref:save_query, EXECUTE_SAVED_QUERY, ref:drop_saved_query, ref:show_saved_query.
Permissions¶
Listing the saved queries requires no special permissions.
Syntax¶
list_saved_queries_statement ::=
SELECT LIST_SAVED_QUERIES()
;
Returns¶
List of saved query names, one per row.
Parameters¶
None
Notes¶
This statement returns an empty result set if no saved queries exist in the current database.
Examples¶
Listing previously saved queries¶
t=> SELECT LIST_SAVED_QUERIES();
saved_query
-------------------------
select_all
select_by_weight
select_by_weight_and_team
t=> SELECT SHOW_SAVED_QUERY('select_by_weight_and_team');
saved_query
-----------------------------------------------
SELECT * FROM nba WHERE Weight > ? AND Team = ?