• <bdo id='6TaUk'></bdo><ul id='6TaUk'></ul>

      <i id='6TaUk'><tr id='6TaUk'><dt id='6TaUk'><q id='6TaUk'><span id='6TaUk'><b id='6TaUk'><form id='6TaUk'><ins id='6TaUk'></ins><ul id='6TaUk'></ul><sub id='6TaUk'></sub></form><legend id='6TaUk'></legend><bdo id='6TaUk'><pre id='6TaUk'><center id='6TaUk'></center></pre></bdo></b><th id='6TaUk'></th></span></q></dt></tr></i><div id='6TaUk'><tfoot id='6TaUk'></tfoot><dl id='6TaUk'><fieldset id='6TaUk'></fieldset></dl></div>

      <legend id='6TaUk'><style id='6TaUk'><dir id='6TaUk'><q id='6TaUk'></q></dir></style></legend>

    1. <small id='6TaUk'></small><noframes id='6TaUk'>

      1. <tfoot id='6TaUk'></tfoot>
      2. 不同的数据库使用不同的名称引用吗?

        时间:2023-08-18

        <small id='42md3'></small><noframes id='42md3'>

        1. <i id='42md3'><tr id='42md3'><dt id='42md3'><q id='42md3'><span id='42md3'><b id='42md3'><form id='42md3'><ins id='42md3'></ins><ul id='42md3'></ul><sub id='42md3'></sub></form><legend id='42md3'></legend><bdo id='42md3'><pre id='42md3'><center id='42md3'></center></pre></bdo></b><th id='42md3'></th></span></q></dt></tr></i><div id='42md3'><tfoot id='42md3'></tfoot><dl id='42md3'><fieldset id='42md3'></fieldset></dl></div>
              <tbody id='42md3'></tbody>

              • <legend id='42md3'><style id='42md3'><dir id='42md3'><q id='42md3'></q></dir></style></legend>
                  <bdo id='42md3'></bdo><ul id='42md3'></ul>
                  <tfoot id='42md3'></tfoot>
                  本文介绍了不同的数据库使用不同的名称引用吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  例如mysql引用表名使用

                  For example, mysql quote table name using

                  SELECT * FROM `table_name`;
                  

                  注意`

                  其他数据库是否曾经使用不同的字符来引用他们的表名

                  Does other database ever use different char to quote their table name

                  推荐答案

                  引号的这种用法称为分隔标识符.它是 SQL 的重要组成部分,否则您不能使用以下标识符(例如表名和列名):

                  This use of quotes is called delimited identifiers. It's an important part of SQL because otherwise you can't use identifiers (e.g. table names and column names) that:

                  • 包括空格:我的表格"
                  • 包括特殊字符和标点符号:my-table"
                  • 包括国际字符:私のテーブル"
                  • 区分大小写:MyTable"
                  • 匹配 SQL 关键字:表"

                  标准 SQL 语言使用双引号作为分隔标识符:

                  The standard SQL language uses double-quotes for delimited identifiers:

                  SELECT * FROM "my table";
                  

                  MySQL 默认使用反引号.MySQL 可以使用标准的双引号:

                  MySQL uses back-quotes by default. MySQL can use standard double-quotes:

                  SELECT * FROM `my table`;
                  SET SQL_MODE=ANSI_QUOTES;
                  SELECT * FROM "my table";
                  

                  Microsoft SQL Server 和 Sybase 默认使用方括号.他们都可以这样使用标准的双引号:

                  Microsoft SQL Server and Sybase uses brackets by default. They can both use standard double-quotes this way:

                  SELECT * FROM [my table];
                  SET QUOTED_IDENTIFIER ON;
                  SELECT * FROM "my table";
                  

                  InterBase 和 Firebird 需要将 SQL 方言设置为 3 以支持分隔标识符.

                  InterBase and Firebird need to set the SQL dialect to 3 to support delimited identifiers.

                  大多数其他品牌的数据库正确使用双引号.

                  Most other brands of database use double-quotes correctly.

                  这篇关于不同的数据库使用不同的名称引用吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:是否可以在 MySQL 中使用基于函数的索引? 下一篇:Mysql 或/和优先级?

                  相关文章

                  最新文章

                  <tfoot id='08za6'></tfoot>

                • <legend id='08za6'><style id='08za6'><dir id='08za6'><q id='08za6'></q></dir></style></legend>

                  <small id='08za6'></small><noframes id='08za6'>

                    <bdo id='08za6'></bdo><ul id='08za6'></ul>
                      <i id='08za6'><tr id='08za6'><dt id='08za6'><q id='08za6'><span id='08za6'><b id='08za6'><form id='08za6'><ins id='08za6'></ins><ul id='08za6'></ul><sub id='08za6'></sub></form><legend id='08za6'></legend><bdo id='08za6'><pre id='08za6'><center id='08za6'></center></pre></bdo></b><th id='08za6'></th></span></q></dt></tr></i><div id='08za6'><tfoot id='08za6'></tfoot><dl id='08za6'><fieldset id='08za6'></fieldset></dl></div>