Reputation: 21
Example: For MSSQL we use "UPDATE STATISTICS table_name".
What can we use for PostgreSQL?
Upvotes: 2
Views: 3191
Reputation:
To update the statistics of a table, you use the ANALYZE command.
analyze table_name;
Upvotes: 5