MYSQL常用SQL命令

2021-04-18 15:16:17 字數 886 閱讀 5717

顯示資料庫或表:

show databases;//然後可以use database_name;     show tables;

更改表名:

alter table table_name rename new_t;

新增列 :

alter table table_name add column c_n column attributes;

刪除列:

alter table table_name drop column c_n;

建立索引:

alter table c_table add index (c_n1,c_n2);     alter table c_table add unique index_name(c_n);     alter table c_table add primary key(sid);

刪除索引:

alter table c_table drop index c_n1;

更改列資訊:

alter  table t_table change c_1 c_1 varchar(200);     alter table t_table modify 1 c_1 varchar(200);

insert插入語句:

insert into table_name (c_1,c_2)         values ('x1',1);

update語句:

update  table_name set c_1 =1 where c_2=3;

刪除資料庫或者表:

drop table table_name;     drop database database_name;//使用mysql_drop_db()可以刪除的

常用SQL命令

create table 表名 列名 資料型別 長度 列名 資料型別 長度 主鍵 create table 表名 列名 資料型別 長度 primary key,自增主鍵 create table 表名 列名 資料型別 長度 primary key auto increment,非空約束 create...

常用mysql資料庫的sql命令

1 方法一 select cast 123 as signed 2 方法二 select convert 123 signed 3 方法三 select 123 0 如 update 表1 set name select name from 表1 where id 2 where id 1 報 yo...

Hbase常用SQL命令

1.如果配置了hbase的環境變數,就直接start hbase.sh 2.如果沒有設定就進入hbase的bin目錄下啟動start hbase.sh 輸入 hbase shell 輸入 list create 表名 列簇1 列簇 2 預設versions為1,預設情況只會訪問乙個版本的列資料,當再...