mysql 基本操作

2021-07-26 02:20:15 字數 1155 閱讀 8509

1.連線資料庫mysql -u root -p --> password ....;

2.顯示資料庫和選擇資料庫檢視表和表結構show databases; use someone; show tables; describe someone; or command --> show columns form someone;

3.create table 表名 (欄位名 varchar(20), 欄位名 char(1)); 建表語句create table student(name varchar(256),age int not null,birth date);varchar and char 乙個是可變長,乙個是固定複雜點的建表語句create table customers(

id int not null auto_increment,

name char(20) not null,

address char(50) null,

city char(50) null,

age int not null,

love char(50) not null default 'no habbit',

primary key(id)

)engine=innodb;

4.刪除資料庫drop database_name;刪除表drop table table_name;刪除表中的內容delete form table_name;你要知道每一行**表示的就是每乙個邏輯的思路

5.更改表結構alter table table_name add des char(12) not null;新增一列 alter table table_name drop column des; 刪掉一列 rename table table_name to another name; 修改資料庫名字 alter table table_name add id int not null primary key auto_increment first; 新增id主鍵自增長

6.外來鍵目前還沒弄,需要後期深入的時候學習了。

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使...