SQL 增删改查(详细)

一、增:有3种方法

1.使用insert插入单行数据:

   insert [into] <表名> [列名] values <列值>

  insert into Strdents (name,age) values (‘atm‘,12)

2.使用insert,select语句将现有表中的 数据添加到已有的新表中

   insert into <已有的新表> <列名> select <原表列名> from <原表名>

  insert into newtable (name,class)select name,class from  tableinfo

3.将数据插入原表中(生成测试数据用的较多)

    和第二种方法一样,只是复制到原表中
   insert into tableinfo (‘name‘,‘class‘)select name,class from  tableinfo

二、删:有3中方法

1.delete删除

    delete from <表名> [where <删除条件>]    

    delete from tableinfo where name=‘atm‘

2.truncate table 删除整个表的数据

     truncate table <表名>

    truncate table tableinfo

   删除表的所有行,但表的结构、列、约束、索引等不会被删除;不能用于有外建约束引用的表

3、drop删除

    drop table <表名>
    drop table tableinfo
   删除表中所有行,表结构也删除了。

三、update更新修改

    update <表名> set <列名=更新值> [where <更新条件>]
    update tableinfo set age=12 where name=‘atm1‘
   set后面可以紧随多个数据列的更新值(非数字要引号);

四、查

1.普通查询

  select <列名> from <表名> [where <查询条件表达试>] [order by <排序的列名>[asc或desc]]

    1).查询所有数据

    select * from tableinfo

   2).查询部分行列--条件查询

    select name,age   from  tableinfo   where age=11;

   3).在查询中使用AS更改列名

    select name as 姓名 from a where  age=11;

   4).查询空行

    select name from tableinf  where class is null

     5).查询返回限制行数(关键字:top )

    select top 6 name from tableinfo

    显示列name的前6行,oracle 中用rownum替代(select   *   from   a where   rownum<6 )
    
   6).查询排序(关键字:order by , asc , desc)

    例:select name from tableinfo where age>=11 order by desc(默认为ASC升序)

2.模糊查询

   1).使用like进行模糊查询

请看另一篇文章, SQL like四种用法

    

   2).使用between在某个范围内进行查询

select * from tableinfo where age between 11 and 22

  

   3).使用in在列举值内进行查询(in后是多个的数据)

select name from tableinfo where name in (‘atm‘,‘atm1‘,‘atm2‘);

版权声明:本文为博主原创文章,未经博主允许不得转载。

时间: 2024-09-30 08:51:30

SQL 增删改查(详细)的相关文章

利用LINQ to SQL 增删改查本地数据库

C#新人,博客园第一篇博文,希望大家多多指教. 最近趁项目空隙,学习了LINQ,其强大高效易读的数据操作方式令人印象深刻.特别是LINQ to SQL,让用户可以像操作内存对象一样操作SQL数据库.在阅读了<深入理解c#>和参考以下四篇博文后,自己摸索,完成了创建本地SQL数据库和数据表,VS连接数据库,到利用LINQ to SQL增删改查数据库表中信息. SQL服务器安装:http://www.downcc.com/tech/4135.html SQL数据库和数据表格创建:http://bl

SQL Server快速生成SQL增删改查语句

你还在手敲代码生成SQL语句吗?你还在为因为马虎出错的SQL语句而感到无语吗?你还在为不知怎样表达复杂的SQL语句而纠结吗?如果你的回答为"是",那你就OUT啦,快来试试应用SQL Server资源管理器快速生成SQL语句吧. 首先,打开SQL Server2008,在菜单栏"查询"下拉菜单中找到"在编辑器中设计查询",如下图: 在打开的查询设计器窗口中添加要进行操作的数据库表. 在添加的表内下方空白部分右键单击鼠标,在弹出菜单中单击"

Linq to sql 增删改查(转帖)

代码 Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/-->using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using Syst

表结构修改以及sql增删改查

修改表结构 修改表名 alter table 表名 rename 新名 增加字段 alter table 表名 add 字段名 数据类型 约束 删除字段 alter table 表名 drop 字段名 修改字段 alter table 表名 change 旧字段名 新字段名 数据类型 约束条件 修改字段顺序 alter table 表名 add 字段名 数据类型 约束条件 first #将该字段放在第一行 alter table 表名 add 字段名 数据类型 约束条件 after 字段名2 #

sql增删改查封装

App.config文件 1 <?xml version="1.0" encoding="utf-8" ?> 2 <configuration> 3 <startup> 4 <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" /> 5 </startup> 6 <connection

SQL 增删改查(具体)

一.增:有3种方法 1.使用insert插入单行数据: insert [into] <表名> [列名] values <列值> insert into Strdents (name,age) values ('atm',12) 2.使用insert,select语句将现有表中的 数据加入到已有的新表中 insert into <已有的新表> <列名> select <原表列名> from <原表名> insert into newta

sql增删改查-转载

一.增:有2种方法 1.使用insert插入单行数据: 语法:insert [into] <表名> [列名] values <列值> 例:insert into Strdents (姓名,性别,出生日期) values ('王伟华','男','1983/6/15')  注意:如果省略表名,将依次插入所有列 2.使用insert,select语句将现有表中的 数据添加到已有的新表中 语法:insert into <已有的新表> <列名> select <

sql增删改查

1增 1.1[插入单行]insert [into] <表名> (列名) values (列值)例:insert into Strdents (姓名,性别,出生日期) values ('开心朋朋','男','1980/6/15') 1.2[将现有表数据添加到一个已有表]insert into <已有的新表> (列名) select <原表列名> from <原表名>例:insert into tongxunlu ('姓名','地址','电子邮件') selec

linq to sql 增删改查

ORM<Object Relation Mapping> Linq To Sql: 一.建立Linq To Sql 类 :理解上下文类: Linq To Sql 类名+context 利用上下文类可以访问数据库中的每一个表: ****************************************** 分类 应用*******************************************************注: 1 info为实际引用的表名 2 在执行某一功能时都需要先将