我正在使用下面的脚本来填充表中的 2 个单独的列:SEARCH_DESC
和SEARCH_TAG
. 我正在运行它,它似乎没有错误,但它没有更新。大约有 190 行需要使用这些数据进行更新 - 仅仅是文本数量及其缓慢还是脚本错误?已按下F5但唯一更新的行是最后一行,即。SERV_ID = 47?
UPDATE some_table
SET SEARCH_DESC = 'This is the description text.',
SEARCH_TAG = 'word, word2, word3, word4'
WHERE SERV_ID = 38;
UPDATE some_table
SET SEARCH_DESC = 'This is the description text.',
SEARCH_TAG = 'word, word2, word3, word4'
WHERE SERV_ID = 45;
UPDATE some_table
SET SEARCH_DESC = 'This is the description text.',
SEARCH_TAG = 'word, word2, word3, word4'
WHERE SERV_ID = 47;