在DBI/quote_identifier文档中有两种语法:
$sql = $dbh->quote_identifier( $name );
$sql = $dbh->quote_identifier( $catalog, $schema, $table, \%attr );
这些示例是关于表名的。
quote_identifier
如果有人像这样引用列,是否有什么要反对的:
$sql = $dbh->quote_identifier( undef, $table, $column );