簡單的SQL語句增刪改查操作 說明: 在mysql裡面親測結果正確 用到的表(學生表:studnets) 1.創建一個學生表,(學號,姓名,性別,家庭住址) mysql> create table students -> ( -> studentId int(11) not null primary ...
簡單的SQL語句增刪改查操作
說明: 在mysql裡面親測結果正確
用到的表(學生表:studnets)
1.創建一個學生表,(學號,姓名,性別,家庭住址)
mysql> create table students
-> (
-> studentId int(11) not null primary key,
-> name varchar(10) not null,
-> sex varchar(1),
-> address varchar(35)
-> );
一,增加操作(關鍵字:insert):
insert into <表名> values(列值);
實例:
1.往學生表裡面增加一條數據:
mysql> insert into students values(20190102,"趙雲","男","常山");
Query OK, 1 row affected (0.13 sec)
二,刪除操作(關鍵字:delete):
delete from <表名> where 刪除條件;
實例:
1.通過學號刪除該學生在表中的數據(刪除趙雲這條數據):
mysql> delete from students where studentId=20190102;
Query OK, 1 row affected (0.15 sec)
三,修改操作(關鍵字:update):
update <表名> set [列名=更新值] where 更新條件;
實例:
1.通過學號修改該學生在表中的數據():
mysql> update students set name="趙子龍",address="河北邢台" where studentId=20190102;
Query OK, 1 row affected (0.13 sec)
Rows matched: 1 Changed: 1 Warnings: 0
四,查詢操作(關鍵字:select):
select * from <表名> where 查詢條件;
實例
1.查詢一條語句
mysql> select * from students where studentId=20190102;
+-----------+--------+------+----------+
| studentId | name | sex | address |
+-----------+--------+------+----------+
| 20190102 | 趙子龍 | 男 | 河北邢台 |
+-----------+--------+------+----------+
1 row in set (0.03 sec)
2.查詢所有的記錄
mysql> select * from students;
+-----------+--------+------+------------+
| studentId | name | sex | address |
+-----------+--------+------+------------+
| 20190102 | 趙子龍 | 男 | 河北邢台 |
| 20190103 | 關羽 | 男 | 河東郡解縣 |
+-----------+--------+------+------------+
2 rows in set (0.01 sec)
五,總結:
每天收穫小進步,積累起來就是大進步;每天收穫小幸福,積攢起來便成大幸福。