91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何使用mysql數據庫基本命令添加數據庫

發布時間:2021-09-28 11:41:45 來源:億速云 閱讀:351 作者:柒染 欄目:MySQL數據庫

如何使用mysql數據庫基本命令添加數據庫,相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。

添加數據庫

[root@localhost ~]# mysql -uroot -p   #進入mysql數據表`
Enter password: 
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 8
......  #省略部分內容

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql> show databases;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| mysql              |
| performance_schema |
| sys                |
+--------------------+
4 rows in set (0.00 sec)

mysql> create database school;       #創建新庫‘school
Query OK, 1 row affected (0.00 sec)

mysql> show databases;          #查看所有庫
+--------------------+
| Database           |
+--------------------+
| information_schema |
| mysql              |
| performance_schema |
| school             |
| sys                |
+--------------------+
5 rows in set (0.00 sec)

添加數據表

mysql>use school;
mysql> create table info (id int not null,name char(6),score decimal(5,2),age int(4));
Query OK, 0 rows affected (0.04 sec)

mysql> desc info;   #查看表結構
+-------+--------------+------+-----+---------+-------+
| Field | Type         | Null | Key | Default | Extra |
+-------+--------------+------+-----+---------+-------+
| id       | int(11)      | NO   |     | NULL    |       |
| name  | char(6)   | YES  |     | NULL    |       |
| score | decimal(5,2) | YES  |  NULL   |       |
| age   | int(4)        | YES  |     | NULL    |       |
+-------+--------------+------+-----+---------+-------+

添加數據表內容
mysql> insert into info (id,name,score,age)values(1,'張三',88,33);
Query OK, 1 row affected (0.01 sec)

mysql> insert into info (id,name,score,age)values(2,'李四',48,31);
Query OK, 1 row affected (0.01 sec)

mysql> insert into info (id,name,score,age)values(3,'王五',68,27);
Query OK, 1 row affected (0.00 sec)

mysql> select * from info;   #查看表內容
+----+--------+-------+------+
| id | name   | score | age  |
+----+--------+-------+------+
|  1 | 張三   | 88.00 |   33 |
|  2 | 李四   | 48.00 |   31 |
|  3 | 王五   | 68.00 |   27 |
+----+--------+-------+------+

添加表列
mysql> alter table info add column score decimal(5,2);
Query OK, 0 rows affected (0.05 sec)
Records: 0  Duplicates: 0  Warnings: 0

mysql> select * from info;   #查看表內容
+----+--------+--------+-------+
| id | name   | hobbly | score |
+----+--------+--------+-------+
|  1 | zl        | 看書   |  NULL |
|  2 | 李四   | 上網   |  NULL |
|  5 | kl        | 游泳   |  NULL |
+----+--------+--------+-------+

更改數據
mysql> update info set score=82 where id=1;  #更改id=1的學生成績為82分
Query OK, 1 row affected (0.01 sec)
Rows matched: 1  Changed: 1  Warnings: 0

mysql> select * from info;  #查看更改效果
+----+--------+-------+------+
| id | name   | score | age  |
+----+--------+-------+------+
|  1 | 張三   | 82.00 |   33 |
|  2 | 李四   | 48.00 |   31 |
|  3 | 王五   | 68.00 |   27 |
+----+--------+-------+------+

刪除數據表
mysql> drop table info;
Query OK, 0 rows affected (0.02 sec)
mysql> show tables;     #查看是否刪除
Empty set (0.00 sec)     #已經刪除(空表)

刪除庫
mysql> drop database school;
Query OK, 0 rows affected (0.01 sec)

mysql> show databases;     #查看school數據庫是否刪除
+--------------------+
| Database           |
+--------------------+
| information_schema |
| mysql              |
| performance_schema |
| sys                |
+--------------------+

刪除表列(記錄條數)
mysql> delete from info where hobbly=1;
Query OK, 1 row affected (0.01 sec)

mysql> select * from info;
+----+--------+-------+------+--------+
| id | name   | score | age  | hobbly |
+----+--------+-------+------+--------+
|  1 | 張三   | 82.00 |   33 |     3        |
|  2 | 李四   | 48.00 |   31 |     5      |
|  3 | 王五   | 68.00 |   27 |      4    |
|  2 | ff        |  55      | 44  |      2     |
|  3 |ww      | 33       |3 1  |     3      |
+----+--------+-------+------+--------+

刪除表列(字段)
mysql> select * from info;  #查看數據表
+----+--------+-------+--------+
| id | name   | score | hobbly |
+----+--------+-------+--------+
|  1 | zl        | 88       | 看書   |
|  2 | 李四    | 68      | 上網   |
|  5 | kl        | 88       | 游泳   |
+----+--------+-------+--------+

mysql> alter table info drop column score;   #用alter刪除表列

mysql> select * from info; #再次查看數據表
+----+--------+--------+
| id | name   | hobbly |
+----+--------+--------+
|  1 | zl         | 看書   |
|  2 | 李四    | 上網   |
|  5 | kl         | 游泳   |
+----+--------+--------+

看完上述內容,你們掌握如何使用mysql數據庫基本命令添加數據庫的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

浏阳市| 鄂尔多斯市| 宁海县| 广昌县| 疏附县| 托克逊县| 清水县| 康保县| 辽宁省| 七台河市| 东阿县| 余江县| 沽源县| 湖南省| 垣曲县| 綦江县| 望奎县| 双牌县| 台中县| 浙江省| 旺苍县| 西宁市| 女性| 滨州市| 武平县| 安乡县| 万州区| 南郑县| 安多县| 健康| 贵南县| 神木县| 察雅县| 灵宝市| 长乐市| 饶河县| 鄂伦春自治旗| 莲花县| 宝坻区| 伊宁市| 汶川县|