中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

MySQL 數據操作

發布時間:2020-08-07 13:09:08 來源:ITPUB博客 閱讀:123 作者:疑惑尋解 欄目:MySQL數據庫
-- 插入信息
-- 方法1:insert...values
-- 單條語句
insert into 表名 values (數據);
    eg:

insert into class values (21403001,'張三','男',20,'重慶');

-- 多條語句
insert into 表名 values (數據),(數據),(數據);
    eg:

insert into class values 
(null,'小花1','女',31,'河北3',null,null),
(null,'小花1','女',31,'河北3',null,null),
(null,'小花1','女',31,'河北3',null,null);

-- 方法2:insert...set
insert into 表名 set 字段1=值1,字段2=值2,...字段n=值n;
    eg:

insert into class set id=null,name='小花1',sex='女',age=32,address='河北3',birthday=null,remark=null;

-- 方法3:insert...select
insert into 插入的表 select * from 原表;
    eg:

insert into class1 select * from class;


-- 查詢數據
-- 方法1:查詢特定的行與列
select
 字段 from 表名 where 條件表達式;
    eg:

select id, name from class where id<=21403005 and name<>'王五';
    --備注:查詢 字段 id<=21403005,但不包含 字段 name='王五' 的數據;


-- 方法2:限制結果集
select * from 表名 limit 條數;
eg:
select * from class limit 7;
-- 備注:數字是多少,就顯示多少條數據

-- 方法3:排序結果集
select * from 表名 order by 字段 asc;
eg:
select * from class order by name asc;
-- 備注:如果 字段 是數字,則按大小排序;如果是漢字或字母,則按字母排序;


-- 更新(修改)數據
update 表名 set 字段名=值,字段名=值,字段名=值,..... where 條件表達式;
eg:
update class set name = '張三',age='50' where id = 21403012;
    --備注: 修改 學號 為 21403012 的 姓名 和 年齡

-- 刪除數據
-- 方法1:如果不使用 where,則會刪除所有數據
delete from 表名 where [字段=值];
delete from 表名 where 條件表達式; 
-- 提交事務后生效,truncate不能保證事務的安全性。
eg:
delete from class2 where address="上海"; -- 指定字段 刪除 數據

-- 查看表
select * from 表名;
eg:

select * from class2;

-- 查看所有表
show tables;

-- 查看 表結構
describe 表名;
eg:
describe class;
向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

白城市| 象州县| 阿勒泰市| 咸宁市| 仪陇县| 阆中市| 西安市| 郁南县| 克山县| 珲春市| 东平县| 称多县| 平泉县| 察哈| 资源县| 杭州市| 图们市| 大港区| 四平市| 楚雄市| 辛集市| 公主岭市| 嘉鱼县| 吉首市| 桂林市| 施甸县| 屏山县| 宣城市| 吉林省| 元氏县| 佛坪县| 龙南县| 达拉特旗| 柏乡县| 澄江县| 蓝山县| 嫩江县| 本溪| 霞浦县| 施甸县| 开封县|