mysql基本操作

2021-09-02 14:23:06 字數 1829 閱讀 2083

1.登陸賬號

mysql -u root -p

2.選擇要操作的資料庫

use 資料庫名 :

3.列出資料庫列表

show databases

4.顯示指定資料庫的所有表(使用該命令前需要使用 use 命令來選擇要操作的資料庫)

show tables

5.顯示資料表的屬性(屬性型別,主鍵資訊 ,是否為 null,預設值等其他資訊)

show columns from 資料表

6.建立資料庫

create database 資料庫名

7.刪除資料庫

drop database 《資料庫名》;

8.建立資料表

create table table_name (column_name column_type);

create table if not exists `runoob_tbl`(

`runoob_id` int unsigned auto_increment,

`runoob_title` varchar(100) not null,

`runoob_author` varchar(40) not null,

`submission_date` date,

primary key ( `runoob_id` )

)engine=innodb default charset=utf8;

9.刪除資料表

drop table 表名

10.插入資料

insert into 'runoob_tbl' values ("學習 php", "菜鳥教程", now());
11.查詢資料

select * from runoob_tbl;

select * from runoob_tbl where runoob_author='菜鳥教程';

12.修改資料

update runoob_tbl set runoob_title='學習 c++' where runoob_id=3;
13.刪除資料

delete from runoob_tbl where runoob_id=3

14.匯入sql檔案

常用source命令

進入mysql資料庫控制台,如

mysql -u root -p

mysql>use 資料庫

然後使用source命令,後面引數為指令碼檔案(如這裡用到的.sql)

mysql>source d:/dbname.sql

15.匯出sql檔案

mysqldump -u 使用者名稱 -p 資料庫名 > 匯出的檔名

mysql基本操作 MySQL基本操作

mysql中新增使用者,新建資料庫,使用者授權,刪除使用者,修改密碼 注意每行後邊都跟個 表示乙個命令語句結束 1.新建使用者 1.1 登入mysql mysql u root p 密碼 1.2 建立使用者 mysql insert into mysql.user host,user,passwor...

mysql 基本操作 mysql基本操作

mysql 建立表,並設定主鍵自增 create table log logid int 4 primary key not null auto increment,logtitle varchar 32 not null logcontent varchar 160 not null logtim...

mysql基本操作

1,檢視資料庫狀態 及啟動停止 etc init.d mysqld status etc init.d mysqld start etc init.d mysqld stop 2,給使用者配置初始密碼123456 mysqladmin u root password 123456 3,修改root使...