小白筆記 linux 中mysql常用命令操作

2021-08-20 18:35:14 字數 2137 閱讀 1077

我用的是deepin系統,mysql資料庫已經裝上了,這篇記錄的是mysql的常用操作

首先,<

alt>+<

ctrl

>+

t 開啟命令列介面,下面是具體操作: 1

、 開啟資料庫

mysql -u

root-p

輸入密碼就進入了資料庫

密碼是不顯示的,所以打密碼的時候看不見密碼很正常,不要著急,這是linux的保護機制 2

、 檢視所有的資料庫

show databases; 3

、 使用某個資料庫(假設資料庫名稱為:firstdatebase)

usefirstdatebase;

然後就進入firstdatebase資料庫中 4

、 檢視資料庫中所有的表

show tables; 5

、 顯示某個資料表的結構(假設該資料表的名稱為:employees)

describe employees; 6

、 顯示某個資料表中的內容(假設該資料表的名稱為:employees)

select

*from

employees; 7

、 建立資料庫

create

database

guowei;

8、 建表(student為表名)

create

table

student

( id

intnot

null,

name

varchar(30

) null

, ***

char(2

) null,

primary

key(id)

)default charset

=utf8; 9

、 增加某張表的內容(假設表的內容為student;欄位有id,

name

,salary)

insert

into

student

values(1

,"小明"

,"男");

10、 修改某張表中的記錄(假設表的名稱為student)

update

name

set***

="女"

where

name

="小明"

; 將小明的性別改為女 11

、 刪除某張表的一條記錄(假設表的名稱為student)

delete

from

student

where

name

="小明"

; 從student表中刪除小明的記錄 12

、 刪除某張表(假設表的名稱為student)

drop

table

student; 13

、 刪除資料庫(假設資料庫名為xiaohong)

drop

database

xiaohong; 14

、 退出資料庫

exit;

另外附上乙份兒,常用的資料型別表

tinyint

1個位元組

smallint

2個位元組

mediumint 3個位元組

int4個位元組

bigint

8個位元組

float

4個位元組

double 8個位元組

date

3個位元組 格式:yyyy-mm

-ddtime

3個位元組 格式:hh:mm:ss

year

1個位元組 格式:yyyy

datetime

8個位元組 格式:yyyy-mm

-ddhh:mm:ss

char

定長字串 大小:0-

255位元組

varchar

變長字串 大小:0-

65535位元組

text

長文字資料 大小:0-

65535位元組

tinytext 短文本字串 大小:0-

255位元組

longtext 極大文字資料 大小:0-

4294

967295位元組

mysql入門命令 小白筆記

登入mysql mysql u使用者名稱 p接著密碼入密碼,如果訪問外部資料庫需要加入引數 h加機器ip 顯示資料庫列表 show databases 建立新使用者 create user username host identified by password username 將建立的使用者名稱...

js小白筆記

通過 jquery,您可以使用 hide 和 show 方法來隱藏和顯示 html 元素 通過 jquery,您可以使用 toggle 方法來切換 hide 和 show 方法。顯示被隱藏的元素,並隱藏已顯示的元素 通過 jquery,您可以實現元素的淡入淡出效果。jquery 擁有下面四種 fad...

Java小白筆記

1.常量,一般字母大寫,不能再賦值,final修飾符 final int value 10 2.與,短路與,或,短路或 短路主要乙個條件成立不必執行第二個,效率更高 3.三元運算子 k i 0?i i 如果i大於等於0,把i賦值給k,否則把負i賦值給k 4.final變數經常和static關鍵字一起...