码迷,mamicode.com
首页 > 数据库 > 详细

SQL语句查询 更新 删除

时间:2016-11-01 19:10:41      阅读:323      评论:0      收藏:0      [点我收藏+]

标签:名称   表结构   取数   set   comm   sql语句   sel   date   select   

一、查询语句

获取数据前十条

oracle:

select * from tab where rownum <= 10;

sql server:

select top 10 * from tab

mysql:

select * from tab limit 10

select * from 表名 limit m,n;从m开始,取n条

二、更新语句

UPDATE 表名称 SET 列名称 = 新值 WHERE 列名称 = 某值

update <表名> set <列名> = <值> where 条件

三、删除语句

oracle:

1、Drop删除表:
    drop table table_name;

2、Truncate删除表中的全部数据:
    trancate table table_name;

3、Delete删除满足条件的行:
    delete from table_name where your_conditions;
    commit;

sql server:

1、Drop

drop table  tb --tb表示数据表的名字     把整个表删掉(表数据和表结构)

2、Truncate

truncate table tb              删除整个表数据,不删表结构

3、Delete

delete table tb where 条件      删除表中符合条件的数据,按行删除

mysql:

1、Drop删除表:
    drop table table_name;

2、Truncate删除表中的全部数据:
    trancate table table_name;

3、Delete删除满足条件的行:
    delete from table_name where your_conditions;
    commit;

 

SQL语句查询 更新 删除

标签:名称   表结构   取数   set   comm   sql语句   sel   date   select   

原文地址:http://www.cnblogs.com/jovi-3y/p/6020304.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!