mysql的bht資料夾 MySQL基本操作

2021-10-22 09:37:07 字數 1978 閱讀 9684

1.有密碼的登入

mysql -u 使用者名稱 -p

提示輸入密碼

登入成功後顯示

welcome to the mysql monitor.  commands end with ; or \g.

your mysql connection id is ***xx

server version: 5.6.13 mysql community server (gpl)

2.顯示資料庫

mysql> show databases;

| database |

| mysql  |

| test   |

2 rows in set (0.04 sec)

mysql剛安裝完有兩個資料庫:mysql和test。

3.顯示資料庫中的表

mysql> use mysql;(開啟庫,對每個庫進行操作就要開啟此庫 )

database changed

mysql> show tables;

| tables_in_mysql |

| columns_priv  |

| db       |

| func      |

| host      |

| tables_priv   |

| user      |

6 rows in set (0.01 sec)

4.顯示資料表的結構:

describe 表名;

5.顯示表中的記錄:

select * from 表名;

例如:顯示mysql庫中user表中的紀錄。所有能對mysql使用者操作的使用者都在此表中。

select * from user;

6.建庫:

create database 庫名;

例如:建立乙個名字為mydatabase的庫

mysql> create databases mydatabase;

7.建表: use 庫名; create table 表名 (字段設定列表); 例如:在剛建立的mydatabase庫中建立表name,表中有id(序號,自動增長),_name(姓名),_***(性別),_birth(出身年月)四個字段 usemydatabase; mysql> create table name (id int(3) auto_increment not null primary key, _name char(8),_*** char(2),_birthdate); 可以用describe命令察看剛建立的表結構。 mysql> describe name;

| field | type  | null | key | default | extra     |

| id  | int(3) |   | pri | null  | auto_increment |

| _name  | char(8) | yes |   | null  |        |

| _***  | char(2) | yes |   | null  |        |

| _birth | date  | yes |   | null  |        |

8.增加記錄

mysql> insert into name values('','tom','male','1988-10-01');

mysql> insert into name values('','jack','female','1988-05-20');

可用select命令來驗證結果。

mysql> select * from name;

9.修改紀錄

mysql> update name set _***=male' where _name='jack';

10.刪除紀錄

mysql> delete from name where _name=jack';

11.刪庫和刪表

drop database 庫名;

drop table 表名;

利用遞迴刪除資料夾(資料夾中套資料夾)

刪除目錄 bool deldir const ansistring p if p.isempty p.length 4 return false 引數必須大於3,即不能為磁碟根目錄或空白 int len p.length char path p.c str ansistring dir ansist...

拷貝檔案 資料夾 建立資料夾 刪除資料夾操作

qt拷貝檔案 資料夾 建立資料夾 刪除資料夾操作 cpp view plain copy brief 拷貝檔案到目的資料夾 param srcfilename 原始檔全路徑,比如 f tx wwxx.txt f tx des desd param desfilepathname 要copy到的目的路...

資料夾刪不掉?有種資料夾叫 畸形資料夾

右鍵刪除 刪不掉。用命令列 rd命令 刪除,找不到檔案。檔案粉碎機 粉碎無效果。在網上查到這個命令 del f a q 1 rd s q 1 新建文字文件,然後改txt字尾為 cmd 把資料夾拽到這個檔案上面,成功刪除。畸形資料夾 定義 就是在windows中無法或難以通過正常途徑進行建立 檢視 刪...