原文链接->Table name quoting for Oracle
Table name quoting for Oracle
In order to to meet the 30-char limitation Oracle has on table names, and match the usual conventions for Oracle databases,
Django may shorten table names and turn them all-uppercase. To prevent such transformations, use a quoted name as the value for db_table:
db_table = '"name_left_in_lowercase"'
Such quoted names can also be used with Django’s other supported database backends; except for Oracle, however, the quotes have no effect. See the Oracle notes for more details.
===========
前面的斜体说加了引号可以阻止Oracle把表名切短和转成大写,后面的斜体又说对Oracle无效。。。。到底这个英文该如何翻译?