Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在一个由不同日期组成的表中有一个日期列。我必须选择每个单元格中的日期并对它们执行一些操作。访问 SQL 中日期列中各个日期的方法是什么,以便我可以对每个日期执行操作。有人可以给我一个如何接近的方向吗?
你的问题有点时髦。但是,听起来您需要使用具有以下一般结构的更新命令-
UPDATE t1 SET col1 = col1 + 1 WHERE SOME_CONDITION;