Mysql學習隨筆 4

2022-07-11 06:03:12 字數 1057 閱讀 3061

sql語句規則

操作資料夾

建立資料庫

create database db2;

create database db2 default charset utf8;

檢視資料庫資訊

show databases;

刪除資料庫

drop database db2;

操作檔案

檢視**

show tables;

建立**

create table t1(id int,name char(10)) default charset=utf8;

create table t1(id int,name char(10))engine=innodb default charset=utf8;

create table t3(id int auto_increment,name char(10))engine=innodb default charset=utf8;

create table t1(

列名 型別 null,

列名 型別 not null,

列名 型別 not null auto_increment primary key,

id int,

name char(10)

)engine=innodb default charset=utf8;

# innodb 支援事務,原子性操作

# myisam myisam

auto_increment 表示:自增

primary key: 表示 約束(不能重複且不能為空); 加速查詢

not null: 是否為空

操作檔案中內容

插入:insert into t1(id,name) values(1,'alex');

刪除:delete from t1 where id<6

where:條件

修改:update t1 set age=18;

update t1 set age=18 where age=17;

檢視:select  *  from  t1;

react學習隨筆4

key 只是在兄弟節點之間必須唯一 陣列元素中使用的 key 在其兄弟節點之間應該是獨一無二的。然而,它們不需要是全域性唯一的。當我們生成兩個不同的陣列時,我們可以使用相同的 key 值 受控元件 在 html 中,表單元素 如 和 之類的表單元素通常自己維護 state,並根據使用者輸入進行更新。...

Mysql學習隨筆 5

1.主鍵 不能重複 不能為空 索引 一張表只能有乙個主鍵 乙個主鍵可以是多列 2.外來鍵 約束不重複 可以為空 節省空間 加速查詢 3.外來鍵例項 create table t5 nid int 11 not null auto increment,pid int 11 not null,num i...

mysql新手入門隨筆4

40 子查詢 出現在其他 sql語句裡的 select語句 例如 select sname,mark from student where mark select max mark from student select sname,mark from student where mark in s...