React中setState資料合併
安裝命令 在bin目錄下cmd mysqld install
解除安裝 mysqld --remove
初始化資料庫 mysqld
--initialize-insecure(安裝目錄會建立一個data目錄)
安裝mysql服務 mysqld--install
進入 mysql -u root mysql -u root -p
show global variables like 'port';檢視埠號
select version();; 檢視版本號
select @@datadir,@@basedir; 檢視資料庫位置
show databases; 檢視資料庫
create database k23 default charset utf8; 建立資料庫
set password='123456' 修改密碼
select password('k23'); 檢視使用者的密碼(加密後的)
show databases; 檢視所有資料庫
use test1; 切換到test1資料庫
select database();檢視當前正在使用的資料庫
刪除表
drop table t1;
判斷刪除,如果存在就刪除,不存在,報警告資訊
drop table if exists t2
; -- Unknown table 'd1.t2'
當前在d1資料庫上,刪除d3資料庫中的表t
drop table if exists d3.t;
刪除一堆表
drop table if exists t1,t2,t3,t4,t5;
刪除一列資料
alter table student drop column birth
刪除一行資料
delete from t1 where id = 3
查看錶結構
desc student
修改表
修改表名
alter table tuser rename userinfo;
修改多個表的名稱rename table t1 to tt1, t2 to tt2, t3 to tt3;
修改列的型別及位置
alter table student modify address varchar(255) after age;
修改列名型別及位置
alter table student change saddr address varchar(100) after age;
把姓名的趙六的人的年齡改成60歲
UPDATE t_user SET age=60 WHERE NAME='趙六'
修改列名
alter table student rename column address to saddr;
增加一列
alter table st add address varchar(255) not null default '鄭州市';
alter table st add age tinyint unsigned not null default 18 first;
alter table st add age tinyint unsigned default 0 after name;