添加/修改SQL表
尝试确定编码此需求的最佳方法:
- 需要将行插入到具有多键索引(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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
SQL 查询很简单:
首先删除任何现有行。
现在插入新的:
The SQL Query is easy:
Delete any existing rows first.
And now insert the new one: