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 ...