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: SAVE_QUERY, EXECUTE_SAVED_QUERY, DROP_SAVED_QUERY, 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 = ?
Listing saved queries with the catalog
Using the catalog is also possible:
t=> SELECT * FROM sqream_catalog.savedqueries;
name | num_parameters
--------------------------+---------------
select_all | 0
select_by_weight | 1
select_by_weight_and_team | 2