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.
のような挿入クエリで set を使用するように誰かに言われました insert into tbl_student SET name='myname', class='myclass'。このクエリは問題なく動作しますが、通常の挿入クエリよりも優先されますか? 通常の挿入クエリは
insert into tbl_student SET name='myname', class='myclass'
insert into tbl (col1, col2) VALUES (val1, val2)