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.
我正在寻找一个通用存储过程,它可以更新任何表中的任何字段值,包括 DATE 或 INT 或 VARCHAR 类型的字段。如何使用预配置的通用变量来完成此操作?
UPDATE tbl SET date_col='2012-10-14', int_col=12345, char_col='foobar' WHERE ...