Information about the last analyze of a table and the statistics levels of its columns.
select ps.*, pa.attname as colname, pa.attstattarget as statstarget from
pg_stat_all_tables ps
inner join pg_attribute pa on ps.relname::regclass::oid = pa.attrelid
where ps.relname = $1::text;
| Parameter | Example | Mandatory | | --- | --- | --- | --- | | table_name | measurement | Yes |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.