国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 數(shù)據(jù)庫 > MySQL > 正文

MySQL 數(shù)據(jù)運作

2024-07-24 12:34:43
字體:
供稿:網(wǎng)友
  -- 插入信息
  -- 方法1:insert...values
  -- 單條語句
  insert into 表名 values (數(shù)據(jù));
      eg:
  insert into class values (21403001,'張三','男',20,'重慶');
 
  -- 多條語句
  insert into 表名 values (數(shù)據(jù)),(數(shù)據(jù)),(數(shù)據(jù));
      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;
 
 
  -- 查詢數(shù)據(jù)
  -- 方法1:查詢特定的行與列
  select 字段 from 表名 where 條件表達式;
      eg:
  select id, name from class where id<=21403005 and name<>'王五';
      --備注:查詢 字段 id<=21403005,但不包含 字段 name='王五' 的數(shù)據(jù);
 
  -- 方法2:限制結(jié)果集
  select * from 表名 limit 條數(shù);
  eg:
  select * from class limit 7;
  -- 備注:數(shù)字是多少,就顯示多少條數(shù)據(jù)
 
  -- 方法3:排序結(jié)果集
  select * from 表名 order by 字段 asc;
  eg:
  select * from class order by name asc;
  -- 備注:如果 字段 是數(shù)字,則按大小排序;如果是漢字或字母,則按字母排序;
 
 
  -- 更新(修改)數(shù)據(jù)
  update 表名 set 字段名=值,字段名=值,字段名=值,..... where 條件表達式;
  eg:
  update class set name = '張三',age='50' where id = 21403012;
      --備注: 修改 學(xué)號 為 21403012 的 姓名 和 年齡
 
  -- 刪除數(shù)據(jù)
  -- 方法1:如果不使用 where,則會刪除所有數(shù)據(jù)
  delete from 表名 where [字段=值];
  delete from 表名 where 條件表達式;
  -- 提交事務(wù)后生效,truncate不能保證事務(wù)的安全性。
  eg:
  delete from class2 where address="上海"; -- 指定字段 刪除 數(shù)據(jù)
 
  -- 查看表
  select * from 表名;
  eg:
  select * from class2;
 
  -- 查看所有表
  show tables;
 
  -- 查看 表結(jié)構(gòu)
  describe 表名;
  eg:
  describe class;

(編輯:武林網(wǎng))

發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 闸北区| 镇江市| 湟中县| 和林格尔县| 晋中市| 定南县| 盐山县| 阿拉尔市| 深泽县| 江达县| 颍上县| 宁津县| 沾益县| 文昌市| 海门市| 长治县| 德兴市| 安庆市| 科技| 上蔡县| 阿勒泰市| 铜梁县| 肃宁县| 龙游县| 高唐县| 漳平市| 登封市| 鹿邑县| 上饶县| 土默特右旗| 贡山| 祥云县| 潮安县| 星子县| 大兴区| 波密县| 阿瓦提县| 桦川县| 彭泽县| 鄂托克前旗| 比如县|