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.
使用するテーブルに同一の行を挿入するには
Insert into table (select * from table where columnA = 'a' and columnB = 'b')
columnB = 'c' を 1 つの SQL に挿入して変更することはできますか?
はい、選択で値を指定するだけです:
insert into table (ColumnA, ColumnB) select ColumnA, 'c' from table where columnA = 'a' and columnB = 'b'
(さらに列がある場合は、それらを列リストに追加し、ColumnA と同じように選択します。)