mysql 基本操作

2022-08-05 11:30:14 字數 1594 閱讀 1530

資料庫的操作:

1.建立

create databases python_test_01(庫名,自定義)chaeset = utf8;

2.刪除

drop database python_test_01;

3.選擇使用資料庫

use python_test_01;

mysql支援多種型別,大致分為三類:數值,日期/時間和字串(字元)型別

建立班級表

use python_test_01;

create table classes(

id int unsigned primary key auto_increment not null,

name varchar(30) not null default'   '

修改表名

alter table 表名 rename to 新錶名;

刪除表drop table 表名; 

建立學生表

create table student(

id int unsigned primary key auto_increment  not null,

name varchar(30) not null default'  '  commment'姓名『

age tinyint default 0 commment '年齡『

height decimal(3,2) comment '身高『

gender enum('男',' 女')default ' 男『 comment 『性別』

cls_id int unsigned default 0 commment '所屬班級id'

is_delete bit default 0 comment '是否刪除'

add_time datetime comment '新增時間'

use 資料庫名;show tables;   檢視表結構  desc 表名;

插入資料

insert into 表名 values()

select id,name from student;     查詢所有記錄

select id from student;   查詢指定字段

select id as code from student;  使用as起別名長的字段用到

where:

1.比較運算

2.邏輯運算

3.模糊查詢

4.範圍查詢

5.空判斷

格式:select 字段 1,欄位2 from 表名 where 條件

between ...... and (範圍查詢)

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