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.
users列で満たされたというテーブルがあります。daily_pointsテーブルのすべての列を 3 に変更したいという列があります。どうすればいいですか?データに影響するため、置換は機能しません。
users
daily_points
テーブル内のすべてにcolumn daily_pointstoの値を設定する場合は、次のステートメントを使用できます。3rowsusers
column
3
rows
UPDATE users SET daily_points = 3;
テーブルのすべての行にUPDATE設定するクエリが必要だと思うので、daily_points = 3users
UPDATE
daily_points = 3
UPDATE `users` SET `daily_points` = '3';