MySQL
 Computer >> コンピューター >  >> プログラミング >> MySQL

MySQLフィールドのintのみを更新します


まずテーブルを作成しましょう-

mysql> create table DemoTable702 (
   StudentId int NOT NULL AUTO_INCREMENT PRIMARY KEY,
   StudentName varchar(100),
   StudentScore int
);
Query OK, 0 rows affected (0.56 sec)

挿入コマンド-

を使用して、テーブルにいくつかのレコードを挿入します
mysql> insert into DemoTable702(StudentName,StudentScore) values('Chris',56);
Query OK, 1 row affected (0.19 sec)
mysql> insert into DemoTable702(StudentName,StudentScore) values('Robert',21);
Query OK, 1 row affected (0.21 sec)
mysql> insert into DemoTable702(StudentName,StudentScore) values('Mike',89);
Query OK, 1 row affected (0.17 sec)
mysql> insert into DemoTable702(StudentName,StudentScore) values('David',99);
Query OK, 1 row affected (0.20 sec)

selectステートメントを使用してテーブルのすべてのレコードを表示する-

mysql> select *from DemoTable702;

これにより、次の出力が生成されます-

+-----------+-------------+--------------+
| StudentId | StudentName | StudentScore |
+-----------+-------------+--------------+
| 1         | Chris       | 56           |
| 2         | Robert      | 21           |
| 3         | Mike        | 89           |
| 4         | David       | 99           |
+-----------+-------------+--------------+
4 rows in set (0.00 sec)

これがMySQLでintを更新するためのクエリです-

mysql> update DemoTable702 set StudentScore=StudentScore+9 where StudentId=2;
Query OK, 1 row affected (0.09 sec)
Rows matched: 1 Changed: 1 Warnings: 0

テーブルレコードをもう一度確認しましょう-

mysql> select *from DemoTable702;

これにより、次の出力が生成されます-

+-----------+-------------+--------------+
| StudentId | StudentName | StudentScore |
+-----------+-------------+--------------+
| 1         | Chris       | 56           |
| 2         | Robert      | 30           |
| 3         | Mike        | 89           |
| 4         | David       | 99           |
+-----------+-------------+--------------+
4 rows in set (0.00 sec)

  1. MySQL:Group Byでフィールドを更新しますか?

    GROUP BYでフィールドを更新するには、UPDATEコマンドでORDERBYLIMITを使用します- mysql> create table DemoTable2018    -> (    -> EmployeeId int NOT NULL AUTO_INCREMENT PRIMARY KEY,    -> EmployeeName varchar(20),    -> EmployeeSalary int    -> ); Query OK, 0 r

  2. MySQLの特定のセルのコンテンツを更新します

    まずテーブルを作成しましょう- mysql> create table DemoTable2029    -> (    -> Id int,    -> FirstName varchar(20),    -> LastName varchar(20)    -> ); Query OK, 0 rows affected (0.98 sec) 挿入コマンド-を使用して、テーブルにいくつかのレコードを挿入します mysql> insert into D