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

目前成都創(chuàng)新互聯(lián)已為近1000家的企業(yè)提供了網(wǎng)站建設(shè)、域名、虛擬主機、網(wǎng)站托管、服務器托管、企業(yè)網(wǎng)站設(shè)計、酉陽土家族苗族網(wǎng)站維護等服務,公司將堅持客戶導向、應用為本的策略,正道將秉承"和諧、參與、激情"的文化,與客戶和合作伙伴齊心協(xié)力一起成長,共同發(fā)展。
添加數(shù)據(jù)庫
[root@localhost ~]# mysql -uroot -p #進入mysql數(shù)據(jù)表` Enter password: Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 8 ...... #省略部分內(nèi)容 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; #創(chuàng)建新庫‘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)
添加數(shù)據(jù)表
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; #查看表結(jié)構(gòu) +-------+--------------+------+-----+---------+-------+ | 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 | | +-------+--------------+------+-----+---------+-------+ 添加數(shù)據(jù)表內(nèi)容 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; #查看表內(nèi)容 +----+--------+-------+------+ | 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; #查看表內(nèi)容 +----+--------+--------+-------+ | id | name | hobbly | score | +----+--------+--------+-------+ | 1 | zl | 看書 | NULL | | 2 | 李四 | 上網(wǎng) | NULL | | 5 | kl | 游泳 | NULL | +----+--------+--------+-------+ 更改數(shù)據(jù) mysql> update info set score=82 where id=1; #更改id=1的學生成績?yōu)?2分 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 | +----+--------+-------+------+ 刪除數(shù)據(jù)表 mysql> drop table info; Query OK, 0 rows affected (0.02 sec) mysql> show tables; #查看是否刪除 Empty set (0.00 sec) #已經(jīng)刪除(空表) 刪除庫 mysql> drop database school; Query OK, 0 rows affected (0.01 sec) mysql> show databases; #查看school數(shù)據(jù)庫是否刪除 +--------------------+ | Database | +--------------------+ | information_schema | | mysql | | performance_schema | | sys | +--------------------+ 刪除表列(記錄條數(shù)) 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; #查看數(shù)據(jù)表 +----+--------+-------+--------+ | id | name | score | hobbly | +----+--------+-------+--------+ | 1 | zl | 88 | 看書 | | 2 | 李四 | 68 | 上網(wǎng) | | 5 | kl | 88 | 游泳 | +----+--------+-------+--------+ mysql> alter table info drop column score; #用alter刪除表列 mysql> select * from info; #再次查看數(shù)據(jù)表 +----+--------+--------+ | id | name | hobbly | +----+--------+--------+ | 1 | zl | 看書 | | 2 | 李四 | 上網(wǎng) | | 5 | kl | 游泳 | +----+--------+--------+
看完上述內(nèi)容,你們掌握如何使用mysql數(shù)據(jù)庫基本命令添加數(shù)據(jù)庫的方法了嗎?如果還想學到更多技能或想了解更多相關(guān)內(nèi)容,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝各位的閱讀!
網(wǎng)頁名稱:如何使用mysql數(shù)據(jù)庫基本命令添加數(shù)據(jù)庫
網(wǎng)頁地址:http://www.chinadenli.net/article48/piehhp.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供App設(shè)計、手機網(wǎng)站建設(shè)、自適應網(wǎng)站、網(wǎng)站設(shè)計、靜態(tài)網(wǎng)站、面包屑導航
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)