The common ones that I can think of are: * `?` * `$0`, `$1` ... * `%0`, `%1` ... I guess, it's probably best to handle `?`, `$`, `%` with and without numbers. e.g. ```sql SELECT * FROM pg_catalog.pg_foreign_table WHERE ftrelid = ?; ```