1. 程式人生 > 其它 >uniapp 使用全域性狀態管理 Vuex

uniapp 使用全域性狀態管理 Vuex

建立資料庫:

CREATE DATABASE 資料庫名;

刪除資料庫:

drop database 資料庫名;

建立資料表:

CREATE TABLE table_name (列名 列的型別);
## 例子:
create table test(
	id int not null primary key auto_increment,	-- 不允許為空 & 主鍵 & 自增
	name varchar(16) not null,   		-- 不允許為空
	email varchar(32) null,      		-- 允許為空(預設)
	age int default 3            		-- 插入資料時,如果不給age列設定值,預設值:3
)default charset=utf8;

刪除庫和表:

drop database 資料庫名;
drop table 表名;

清空表:

delete from 表名;
truncate table 表名; -- 速度快,資料無法恢復

插入資料:

INSERT INTO table_name ( v1, v2,...vn ) VALUES( value1, value2,...value);

刪除資料:

delete from 表名 where 條件;

更新語句:

UPDATE 表名 set title='mysql' WHERE id=3;

新增列:

alter table 表名 add column 列名 列的資料型別 not null;--型別後面可以加限制條件如不為空等

刪除列:

alter table 表名 drop column 列名;

修改列:

alter table 表名 modify column 列名 型別;

修改列 型別+名稱

alter table 表名 change 原列名 新列名 新型別;

修改列 預設值

ALTER TABLE 表名 ALTER 列名 SET DEFAULT 1000;

刪除列 預設值

ALTER TABLE 表名 ALTER 列名 DROP DEFAULT;

新增主鍵

alter table 表名 add primary key(列名)

刪除主鍵

alter table 表名 drop primary key;