以 24-073110-XX 格式将数据插入表时出现问题???

发布于 2024-09-13 12:28:53 字数 126 浏览 2 评论 0原文

我需要帮助将 id 插入 ASP.net mvc (C#) 中的数据库。这里的id是主键,它的格式应该是24-073110-XX,其中XX代表一个数值,应该增加1。

我应该如何插入这种格式的id?

I need help insering an id into the database in ASP.net mvc (C#). Here theid is the primary key and it should be in the format 24-073110-XX, where XX represents a numeric value which should be incremented by 1.

How should I insert the id in this format?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

冷了相思 2024-09-20 12:28:53

正如 Rob 所说 - 不要将整个大标识符存储在表中 - 只需存储更改的部分 - 连续数字。

如果您确实需要在表中显示整个标识符,例如为了显示它,您可以使用计算列:

ALTER TABLE dbo.MyTable
  ADD DisplayID AS '24-073110-' + RIGHT('00' + CAST(ID AS VARCHAR(2)), 2) PERSISTED

这样,您的 INT IDENTITY 将用作 INT 并始终包含数值,并且它将由 SQL 自动递增服务器。

然后,您的 DisplayID 字段将包含如下值:

ID  DisplayID
 1  24-073110-01
 2  24-073110-02

12  24-073110-12
13  24-073110-03

21  24-073110-21

由于它是持久字段,因此它现在是表的一部分,您可以对其进行查询,甚至可以在其上放置索引以加快查询速度:

SELECT (fields) FROM dbo.MyTable WHERE DisplayID = '24-073110-59'

更新:

  • 我绝对不会使用 DisplayID 作为主键 - 这就是 ID IDENTITY 列的优点对于

  • DisplayID 上创建索引与在表中的任何其他列上创建索引没有什么不同,实际上:

    在 dbo.MyTable(DisplayID) 上创建非聚集索引 SomeIndex
    

As Rob said - don't store the whole big identifier in your table - just store the part that changes - the consecutive number.

If you really need that whole identifier in your table, e.g. for displaying it, you could use a computed column:

ALTER TABLE dbo.MyTable
  ADD DisplayID AS '24-073110-' + RIGHT('00' + CAST(ID AS VARCHAR(2)), 2) PERSISTED

This way, your INT IDENTITY will be used as an INT and always contains the numerical value, and it will be automatically incremented by SQL Server.

Your DisplayID field will then contain values like:

ID  DisplayID
 1  24-073110-01
 2  24-073110-02

12  24-073110-12
13  24-073110-03

21  24-073110-21

Since it's a persisted field, it's now part of your table, and you can query on it, and even put an index on it to make queries faster:

SELECT (fields) FROM dbo.MyTable WHERE DisplayID = '24-073110-59'

Update:

  • I would definitely not use DisplayID as your primary key - that's what the ID IDENTITY column is great for

  • to create an index on DisplayID is no different than creating an index on any other column in your table, really:

    CREATE NONCLUSTERED INDEX SomeIndex ON dbo.MyTable(DisplayID)
    
南风起 2024-09-20 12:28:53

如果数据的 24-073110- 部分始终相同,则将其存储在数据库中几乎没有意义。鉴于您已经说过 XX 组件是一个递增 1 的数值,我建议您的表创建方式与此类似:

CREATE TABLE [dbo].[MyTable]
(
  MyTableId INT IDENTITY(1,1) NOT NULL,
  /*
      Other columns go here
  */
)

这样,您可以让数据库担心插入唯一的自动增加主键的值。

If the 24-073110- part of the data is always going to be the same, there's little to no point in storing it in the database. Given that you've said that the XX component is a numeric value that increments by one, I'd suggest having your table created similarly to this:

CREATE TABLE [dbo].[MyTable]
(
  MyTableId INT IDENTITY(1,1) NOT NULL,
  /*
      Other columns go here
  */
)

This way, you can let the database worry about inserting unique automatically incrementing values for your primary key.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文