mySQL學習筆記

2021-10-05 11:10:34 字數 1804 閱讀 1575

//方法一 登陸mysql伺服器

mysql -u root -p

enter password:你的密碼

//方法二

mysql -u root -p你的密碼

//登陸成功後顯示:

welcome to the mysql monitor. commands end with

; or \g.

your mysql connection id is 16

server version:

5.5.62

-log source distribution

(c)2000

,2018

oracle is a registered trademark of oracle corporation and/or its

affiliates. other names may be trademarks of their respective

owners.

type 'help;' or '\h'

for help. type '\c' to clear the current input statement.

mysql>

//退出mysql伺服器

mysql> exit;

//這裡我們注意後面的;號在mysql語句中;代表乙個命令的結束

//顯示所有資料庫

mysql> show databases;

//建立資料庫

mysql>

create

database 資料庫名稱;

//切換/選中資料庫

mysql> use 資料庫名稱;

//顯示資料庫中所有的表

mysql> show tables;

//建立資料表

mysql>

create

table

表名稱(列表定義)

;//資料庫列表定義

《列名1

>空格《型別1

>,

《列名2

>空格《型別2

>,

《列名3

>空格《型別3

>,

《列名4

>空格《型別4

>,

......

//檢視資料表結構

mysql> desc 表名稱;+--

-------

+------

-------

+| field | type |+--

-------

+------

-------

+| 列名 | 資料型別 |

//查詢表

mysql>

select

*from 表名稱;

//新增資料

mysql>

insert

into 表名稱 values

(資料1,資料2,資料3...

);//注意資料型別的填寫規範

//修改資料

mysql>

update 表名稱 set 修改列名=

'修改後的名稱' where 定位列名稱=

'定位名稱'

;//刪除資料

mysql>

delete

from 表名稱 where 列名稱=

'列名'

;//刪除表

mysql>

drop

table 表名稱;

mysql學習筆記 51 mysql學習筆記

初學mysql時整理,隨時更新 資料操作 增 insert into 表名 字段列表 values 值列表 值列表 如果要插入的值列表包含所有字段並且順序一致,則可以省略字段列表。可同時插入多條資料記錄!replace 與 insert 完全一樣,可互換。insert into 表名 set 欄位名...

mysql學習筆記 51 Mysql 學習筆記

一.首先進入mysql mysql u root p新增使用者許可權設定 grant all privileges on to jerry localhost identified by aa1234567 只允許本機訪問 grant all privileges on to jerry 10.80...

mysql做筆記 mysql學習筆記

alter table 新增,修改,刪除表的列,約束等表的定義。檢視列 desc 表名 修改表名 alter table t book rename to bbb 新增列 alter table 表名 add column 列名 varchar 30 刪除列 alter table 表名 drop ...