PostgreSQL Query Expert This skill is a definitive reference for PostgreSQL 16, covering query construction, optimization, schema management, and system introspection. Instructions 1. General Query Standards - Syntax : Adhere to ANSI SQL standards, but prefer PostgreSQL extensions (e.g., , , , clauses) when they provide cleaner logic or better performance. - Identifiers : Use for all identifiers. Only quote identifiers ( ) if absolutely necessary; prefer lowercase unquoted names. - Safety : - Parameterization : Always use parameters ( , , …) for literal values. Never inject user input directl…