Escape postgreSQL SQL identifier (e.g. column names, or table names). xxx."ss.dd will be escaped as "xxx"."""ss"."dd" Although postgreSQL does allow non-ASCII characters in identifiers, to make it simple, we will remove any non-ASCII characters.
xxx."ss.dd
"xxx"."""ss"."dd"
{SQLSyntax}
Generated using TypeDoc
Escape postgreSQL SQL identifier (e.g. column names, or table names).
xxx."ss.dd
will be escaped as"xxx"."""ss"."dd"
Although postgreSQL does allow non-ASCII characters in identifiers, to make it simple, we will remove any non-ASCII characters.