Mysql之基本增刪改查

2021-08-09 18:34:31 字數 954 閱讀 9541

建立資料庫:create database name;

選擇資料庫:use databasename;

刪除資料庫:drop database name

1、建立資料表:

create table 表明

( id int not null auto_increment,

name varchar(20) not nulldefault 『經理』, #設定預設值

description varchar(100),

primary key pk_positon (id) #設定主鍵

); 2、修改**的名字:alter table tablename rename table_new_name;

3、刪除表:drop table tablename;

修改結構

增加列:alter tablename add(test char(10));

修改列:alter tablename modify test char(20) not null;

刪除列:alter tablename drop column test;

修改表列名:

alter table table_name change column old_*** new_*** varcher(30)

1、增加資料:insert into table_name(col1,col2) values(data1,data2);

2、刪除資料:delete colname where data=」具體某個資料」;

3、修改資料:update table_name set data1=」具體某個資料」 where data1=」舊資料」;

4、清空表資料:delete from table_name;

5、清空序列表資料:truncate table table_name;(可以初始化主鍵自增長)

mysql 基本增刪改查

mysql是關係型資料庫 關係型資料庫的特點 1,資料時以行和列的形式去儲存的 2,這一行系列的行和列稱為表 3,表中的每一行叫一條記錄 4,表中的每一列叫乙個字段 5,表和表之間的邏輯關聯叫關係 一,基本sql命令 sql命令的使用規則 1,每條命令必須以分號結尾 2,sql命令不區分字母大小寫 ...

mysql增刪改查效果 mysql增刪改查

檢視所有資料庫 mysql show databases 建立乙個庫ghd並指定字符集為utp8 mysql create database ghd charset utf8 檢視mysql支援的字符集 mysql show char set 建立乙個表,並設定id為主鍵 create table ...

mysql增刪改查擴充套件 MySQL增刪改查

1 插入 insert 1 insert into 表名 values 值1 值2 例子 insert into t1 values zengsf 23 fengshao 22 2 insert into 表名 欄位1,values 值1 例子 insert into t1 name values ...