添加/修改SQL表

发布于 2024-09-11 15:22:25 字数 196 浏览 1 评论 0原文

尝试确定编码此需求的最佳方法:

  • 需要将行插入到具有多键索引(PlantID、年、月)的 SQL 表中。
  • 行可能已存在,可以更新或删除现有行。
  • 行包含大约 150 个从其他 SQL 表派生的字段。

试图确定最简单的方法来完成,我想使用 SQLDataAdaptor,任何想法将不胜感激。

Trying to determine best way to code this requirement :

  • Need to insert rows to a SQL table having a multiple key index (PlantID,Year,Month).
  • Row may already exist could update or delete existing row.
  • Row contains around 150 fields that is dirived form other SQL tables.

Trying to determine simplest way to accomplish , I have thought would like to use SQLDataAdaptor, any ideas would be appreciated.

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

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

发布评论

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

评论(1

青衫儰鉨ミ守葔 2024-09-18 15:22:25

SQL 查询很简单:

首先删除任何现有行。

DELETE FROM table WHERE PlantID = "..." AND Year = "..." AND Month = "..."

现在插入新的:

INSERT 
     INTO table (PlantID, Year, Month, other_col_1, ..., other_col_n)
     VALUES("...", "...", "...", "...", ..., "...")

The SQL Query is easy:

Delete any existing rows first.

DELETE FROM table WHERE PlantID = "..." AND Year = "..." AND Month = "..."

And now insert the new one:

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