
SQL
zhoxier
这个作者很懒,什么都没留下…
展开
-
union 和union all 的区别
假设我们有一个表Student,包括以下字段与数据: [c-sharp] view plaincopyprint?drop table student; create table student ( id int primary key, name nvarchar2(50) not null, score number not null );转载 2012-11-01 11:00:49 · 372 阅读 · 0 评论 -
sql 删除数据库表内容
1、若要删除表中的所有行,则 TRUNCATE TABLE 语句是一种快速、无日志记录的方法。TRUNCATE TABLE 与不含有 WHERE 子句的 DELETE 语句在功能上相同。但是,TRUNCATE TABLE 速度更快,并且使用更少的系统资源和事务日志资源。与 DELETE 语句相比,TRUNCATE TABLE 具有以下优点:所用的事务日志空间较少。D转载 2013-10-17 13:29:14 · 10541 阅读 · 0 评论 -
SQL Server中的sysobjects
1、select 'alter table' +name+'nocheck constraint all' from sysobjects where type ='U'select 'alter table' +name+'check constraint all' from sysobjects where type ='U'select name from sysobjects转载 2013-11-05 13:43:16 · 956 阅读 · 0 评论 -
sql xtype类型
sysobjects 表 在数据库内创建的每个对象(约束、默认值、日志、规则、存储过程等)在表中占一行。只有在 tempdb 内,每个临时对象才在该表中占一行。 列名 数据类型 描述 name sysname 对象名。 Id int 对象标识号。 xtype char(2) 对象类型。可以是下列对象类型中的一种: C = CHECK 约束 D = 默认值或 DEFAUL转载 2013-12-20 17:02:00 · 1127 阅读 · 0 评论 -
sql exists 和in
转自:http://www.cnblogs.com/netserver/archive/2008/12/25/1362615.html 比如在Northwind数据库中有一个查询为SELECT c.CustomerId,CompanyName FROM Customers cWHERE EXISTS(SELECT OrderID FROM Orders o WHERE o.Cu转载 2013-09-24 22:08:14 · 855 阅读 · 0 评论 -
left join 加and 和 left join 加where
1、AND过滤之后再连接2、WHERE连接之后再过滤下面以具体例子来说明:(1)、建表及插入测试数据 [c-sharp] view plaincopyprint?--建测试表 create table FACT_TAB ( ID INTEGER, STATUS VARCHAR2(8) ); create table DIM_转载 2014-08-26 15:36:05 · 1624 阅读 · 2 评论 -
sqlserver 字符串
转自:http://www.cnblogs.com/jiajiayuan/archive/2011/06/16/2082488.html转载 2014-08-12 17:25:33 · 859 阅读 · 0 评论