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

    1. <small id='EHEVz'></small><noframes id='EHEVz'>

          <bdo id='EHEVz'></bdo><ul id='EHEVz'></ul>

        <tfoot id='EHEVz'></tfoot>

        如何自动增加一个varchar

        How to autoincrement a varchar(如何自动增加一个varchar)
          <i id='vX7jU'><tr id='vX7jU'><dt id='vX7jU'><q id='vX7jU'><span id='vX7jU'><b id='vX7jU'><form id='vX7jU'><ins id='vX7jU'></ins><ul id='vX7jU'></ul><sub id='vX7jU'></sub></form><legend id='vX7jU'></legend><bdo id='vX7jU'><pre id='vX7jU'><center id='vX7jU'></center></pre></bdo></b><th id='vX7jU'></th></span></q></dt></tr></i><div id='vX7jU'><tfoot id='vX7jU'></tfoot><dl id='vX7jU'><fieldset id='vX7jU'></fieldset></dl></div>

          <small id='vX7jU'></small><noframes id='vX7jU'>

            <bdo id='vX7jU'></bdo><ul id='vX7jU'></ul>
            • <legend id='vX7jU'><style id='vX7jU'><dir id='vX7jU'><q id='vX7jU'></q></dir></style></legend>

                    <tbody id='vX7jU'></tbody>
                  <tfoot id='vX7jU'></tfoot>
                  本文介绍了如何自动增加一个varchar的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我可以在一张表中创建一个像c0001、c0002"和供应商s0001、s0002"这样的主键吗?

                  Can I make a primary key like 'c0001, c0002' and for supplier 's0001, s0002' in one table?

                  推荐答案

                  1. 数据库设计的理念是将每个数据元素分开.每个元素都有自己的数据类型、约束和规则.c0002 不是一个字段,而是两个.与 XXXnnn 或其他类似.这是不正确的,它将严重限制您使用数据的能力,以及使用数据库功能和设施的能力.

                  1. The idea in database design, is to keep each data element separate. And each element has its own datatype, constraints and rules. That c0002 is not one field, but two. Same with XXXnnn or whatever. It is incorrect , and it will severely limit your ability to use the data, and use database features and facilities.

                  将其分解为两个离散的数据项:
                  column_1 CHAR(1)
                  column_2 INTEGER

                  Break it up into two discrete data items:
                  column_1 CHAR(1)
                  column_2 INTEGER

                  然后在 column_2

                  是的,你的主键可以是 (column_1, column_2),所以你没有失去 c0002 对你的任何意义.

                  And yes, your Primary Key can be (column_1, column_2), so you have not lost whatever meaning c0002 has for you.

                  永远不要将供应商和客户(无论c"和s"是什么意思)放在同一张表中.如果这样做,您将没有数据库表,您将拥有一个平面文件.以及随之而来的各种问题和限制.

                  Never place suppliers and customers (whatever "c" and "s" means) in the same table. If you do that, you will not have a database table, you will have a flat file. And various problems and limitations consequent to that.

                  这意味着,规范化数据.你最终会得到:

                  That means, Normalise the data. You will end up with:

                  • 一个用于 PersonOrganisation 的表格,其中包含公共数据(Name, Address...)
                  • Customer 的一张表,其中包含客户特定的数据 (CreditLimit...)
                  • 一个用于 Supplier 的表格,其中包含特定于供应商的数据(PaymentTerms...)
                  • 没有歧义或可选的列,因此没有空值
                  • 对使用或 SQL 函数没有限制
                    .
                  • one table for Person or Organisation containing the common data (Name, Address...)
                  • one table for Customer containing customer-specific data (CreditLimit...)
                  • one table for Supplier containing supplier-specific data (PaymentTerms...)
                  • no ambiguous or optional columns, therefore no Nulls
                  • no limitations on use or SQL functions
                    .

                  当您需要添加列时,您只在需要的地方添加,而不会影响平面文件的所有其他起诉.影响范围仅限于变更范围.

                  And when you need to add columns, you do it only where it is required, without affecting all the other sues of the flat file. The scope of effect is limited to the scope of change.

                  这篇关于如何自动增加一个varchar的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  How do I split flat file data and load into parent-child tables in database?(如何拆分平面文件数据并加载到数据库中的父子表中?)
                  How to import CSV into sqlite using RSqlite?(如何使用 RSqlite 将 CSV 导入 sqlite?)
                  Import CSV to Update rows in table(导入 CSV 以更新表中的行)
                  Importing MaxMind#39;s GeoLite2 to MySQL(将 MaxMind 的 GeoLite2 导入 MySQL)
                  Import / Export database with SQL Server Server Management Studio(使用 SQL Server Server Management Studio 导入/导出数据库)
                  How do you import a large MS SQL .sql file?(如何导入大型 MS SQL .sql 文件?)
                    <tbody id='pGy8N'></tbody>
                  <i id='pGy8N'><tr id='pGy8N'><dt id='pGy8N'><q id='pGy8N'><span id='pGy8N'><b id='pGy8N'><form id='pGy8N'><ins id='pGy8N'></ins><ul id='pGy8N'></ul><sub id='pGy8N'></sub></form><legend id='pGy8N'></legend><bdo id='pGy8N'><pre id='pGy8N'><center id='pGy8N'></center></pre></bdo></b><th id='pGy8N'></th></span></q></dt></tr></i><div id='pGy8N'><tfoot id='pGy8N'></tfoot><dl id='pGy8N'><fieldset id='pGy8N'></fieldset></dl></div>

                  <tfoot id='pGy8N'></tfoot>

                  <small id='pGy8N'></small><noframes id='pGy8N'>

                  • <legend id='pGy8N'><style id='pGy8N'><dir id='pGy8N'><q id='pGy8N'></q></dir></style></legend>

                          <bdo id='pGy8N'></bdo><ul id='pGy8N'></ul>