CLEAN QUERY STATS
This statement is used to clear query statistics
grammar:
CLEAN [ALL| DATABASE | TABLE] QUERY STATS [[FOR db_name]|[FROM|IN] table_name]];
Remarks:
Clear all statistics
clean all query stats;
Clear the specified database statistics
clean database query stats for test_query_db;
Clear the specified table statistics
clean table query stats from test_query_db.baseall;
CLEAN, QUERY, STATS