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.
クエリを考えると...
UPDATE Table1 SET col1 = col1 + 1, col2 = col1 * 2 WHERE colID = 1
...クエリが実行される前に等しい場合、クエリが実行さcol1れるか、実行された後に設定されますか?1 col224
col1
1
col2
2
4
試してみてください。しかし、ここに行きます:
http://sqlfiddle.com/#!2/7b6de/1
Col2が4に更新されます。
幸運を。