mysql常用語句

2021-06-13 02:17:15 字數 1216 閱讀 4031

列出所有資料庫資訊:  show databases;

轉到某個資料庫:        use database_name;

列出某個資料庫的所有表資訊: show tables;

建立資料庫:              create database database_name;

建立資料庫表:           create table mytable (name varchar(20), *** char(1),

birth date, birthaddr varchar(20));

顯示表結構:              describe mytable;

更改表名:                 alter table table_name rename new_t;

新增列:                    alter table table_name add column column_name column_attributes;

刪除列:                    alter table table_name drop column column_name;

建立索引:                 alter table c_table add index (column_name1,column_name2);

alter table c_table add unique index_name(column_name);

alter table c_table add primary key(sid);

刪除索引:                 alter table c_table drop index column_name1;

更改列資訊:              alter  table t_table change c_1 c_1 varchar(200);

alter table t_table modify 1 c_1 varchar(200);

插入語句:                 insert into table_name (c_1,c_2) values ('x1',1);

更新語句:                 update table_name set c_1 =1 where c_2=3;

刪除資料庫/表:         drop table table_name;

drop database database_name;

mysql常用語句 MySQL常用語句

create table student id int primary key auto increment comment 學號 name varchar 200 comment 姓名 age int comment 年齡 comment 學生資訊 修改表注釋 alter table studen...

php mysql 常用語句 mysql常用語句

一 修改mysql使用者密碼 mysql h localhost u root p 命令列登入 update user set password password 123456 where user root 二 資料庫操作 show databases 顯示資料庫 create database ...

MySQL常用語句

and和or可以混用,and比or具有更高的優先順序,但盡量使用圓括號區分 自動過濾重複的資料owner,關鍵字distinct select distinct owner from pet 按照生日公升序排列,關鍵字order by select name,birth from pet order...