mysql資料庫的增刪改查
增--插入資料insert
增 insert into 表(字段,...) values(值,...);insert into t1 value (1,'大壯','male','上課,寫作業');
insert into t1 values(2,'杜相璽','male','寫作業,考試');
insert into t1 values(3,'b哥','male','寫作業'),(4,'莊博','male','考試');
insert into t1(username,hobby) values ('楊得港','上課,寫作業,考試'),('李帥','考試')
insert into t2(id,name) select id,username from t1;
刪--刪除資料delete
清空表delete from表;
會清空表,但不會清空自增字段的offset(偏移量)值
truncate table表;
會清空表和自增字段的偏移量
刪除某一條資料
delete from 表 where 條件;
改--更新資料update
update 表 set 字段=值 where條件;update 表 set 字段=值,字段=值 where 條件;
查--查詢資料 search
1,單錶查詢
2,連表查詢
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 ...
增刪改查 JS陣列增刪改查這點事兒
1 length屬性 length屬性是陣列最重要的屬性,沒有之一,length屬性告訴我們這個陣列內有多少個資料元素,當length 0時說明陣列時乙個空陣列。我們想要遍歷陣列時可以直接將遍歷的終點設為 length 1。這是本文的重點,我們從增刪改查方面入手,梳理方法的作用和用法,有利於記憶和使...