尝试确定编码此要求的最佳方式:
尝试确定最简单的方法,我曾想过想使用SQLDataAdaptor,任何想法都会受到赞赏。
答案 0 :(得分:0)
SQL查询很简单:
首先删除所有现有行。
DELETE FROM table WHERE PlantID = "..." AND Year = "..." AND Month = "..."
现在插入新的:
INSERT
INTO table (PlantID, Year, Month, other_col_1, ..., other_col_n)
VALUES("...", "...", "...", "...", ..., "...")