MySql簡單doc操作

2021-07-09 13:54:01 字數 2373 閱讀 8608

登陸mysql

打cmd命令終端,如果已經新增了mysql的環境變數,可以直接使用命令

mysql -uroot 

直接回車,之後按提示輸入密碼,

如果未新增mysql的環境變數,可以切換到mysql的安裝目錄下的bin目錄,再使用

mysq -uroot

你也可以手動為mysql新增環境變數。這裡就不介紹怎麼新增環境變數的方法了

密碼輸入正確之後,就會出現「welcome to the mysql monitor.  commands end with ; or \g. ......」字樣,

命令列出現「mysql>」字元字首。現在你就可以使用命令對mysql進行操作了。曾經有沒有過這樣的經歷,原來看見別人在命令列裡面咔咔的猛敲時,就一通的崇拜,覺得這人很牛,現在你也可以讓別一通崇拜了。

mysql的所有命令都以";"或者\g為結束符

2 新建資料庫

在新建資料庫之後,我們先設定一下字符集

mysql>set names utf8;

然後再建立資料庫

顯示所有資料庫

使用資料庫

mysql>use 資料庫名;

新建表mysql>create table study(

id int(11) unsigned not null auto_increment comment '學生id號',

username varchar(30) not null default '' comment '學生名字',

class tinyint(3) unsigned not null,

*** enum('男','女','保密')  character set utf8 collate utf8_general_ci not null default '保密' comment '性別',

addtime int(10) not null default '0',

primary key (id)

)engine=innodb  comment = '學生表';

顯示所有表

修改表的名稱 

mysql>rename table study to study_new ;

或者mysql>alter table study_new rename to study;

顯示字段資訊

show columns from study或者describe study

插入資料

mysql> insert into study (username,class,***)values('小王',1,'男'),('小四',2,'女');

查詢資料(使concat函式拼接資料)

mysql> select username,concat(class,'班'),*** from study;

刪除資料

刪除資料表

刪除資料庫

mysql> drop database lesson;

使用者操作 doc

使用者操作命令 1 useradd 使用者名稱或者 adduser 使用者名稱新增乙個使用者後 home 目錄下面多了乙個該使用者名稱的目錄 同事etc 目錄下檔案 passwd 下多個乙個使用者資訊 huqun x 32 31 home huqun bin bash 這個意思是 有乙個胡群的使用者...

使用者操作 doc

使用者操作命令 1 useradd 使用者名稱或者 adduser 使用者名稱新增乙個使用者後 home 目錄下面多了乙個該使用者名稱的目錄 同事etc 目錄下檔案 passwd 下多個乙個使用者資訊 huqun x 32 31 home huqun bin bash 這個意思是 有乙個胡群的使用者...

iText API操作doc文件

public void createdoccontext string file throws documentexception,ioexception atable.setwidths width 設定每列所佔比例 atable.setwidth 90 佔頁面寬度 90 atable.setal...