2015年7月13日

SQL2008-字符转数字CAST和CONVERT

摘要: 语法 使用CAST: CAST(expression AS data_type) 使用CONVERT: CONVERT(data_type[(length)],expression,[style])例:CONVERT(VARCHAR(25),GETDATE(),120)120 或者 20 yyyy-... 阅读全文

posted @ 2015-07-13 14:29 疯狂delphi 阅读(649) 评论(0) 推荐(0) 编辑

SQL2008-查询库中是否存在某表

摘要: select * from sysobjects where name= 'N201111B' and xtype= 'U' 阅读全文

posted @ 2015-07-13 14:28 疯狂delphi 阅读(325) 评论(0) 推荐(0) 编辑

SQLServer 2000个人版下载

摘要: http://wt.duote.com/soft/11458.html sql server 2000个人版下载 阅读全文

posted @ 2015-07-13 14:27 疯狂delphi 阅读(1002) 评论(0) 推荐(0) 编辑

SQL2008-不同数据库之间的触发器

摘要: create trigger tr_update_Table_1 on rwqd FOR UPDATE As update dataabc.dbo.Table_1 set NO2='OK' from dataabc.dbo.Table_1 aa,inserted bb where aa.NO1... 阅读全文

posted @ 2015-07-13 14:26 疯狂delphi 阅读(769) 评论(0) 推荐(1) 编辑

SQL2008--行号的得到

摘要: WITH DataTable AS( select *, ROW_NUMBER() OVER(order by ID) as Rowno from (select * from UserInfo) as TempTable) select * from DataTable where Rowno b... 阅读全文

posted @ 2015-07-13 14:24 疯狂delphi 阅读(493) 评论(0) 推荐(0) 编辑

2015年7月12日

SQL2008--SQL语句-存储过程-触发器-事务处理-基本语法-函数

摘要: 环境 SQL20081.存储过程建立库-可编程性-存储过程-右击“存储过程”-点击“新建存储过程”SET ANSI_NULLS ONGOSET QUOTED_IDENTIFIER ONGOCREATE PROCEDURE [dbo].[zgccgc] //存储过程的名字@zgID nvarchar(... 阅读全文

posted @ 2015-07-12 10:18 疯狂delphi 阅读(369) 评论(0) 推荐(0) 编辑

SQL2008-分页显示3种方法

摘要: 方法1: 适用于 SQL Server 2000/2005/2008SELECT TOP 10 *FROM YieldRoleWHERE id NOT IN ( SELECT TOP (10*(1-1)) id FROM YieldRole ORDER BY id )ORDE... 阅读全文

posted @ 2015-07-12 10:15 疯狂delphi 阅读(788) 评论(0) 推荐(0) 编辑

SQL2008-表对表直接复制数据

摘要: 1.全部复制,使用简单,但是字段容易出错(字段和顺序必须相同)INSERT INTO AAAStuffAgitationYield SELECT * FROM StuffAgitationYield2.列出要同步的字段,使用不方便,但还是建义这么用。专家都这么用。INSERT INTO AAAStu... 阅读全文

posted @ 2015-07-12 10:14 疯狂delphi 阅读(363) 评论(0) 推荐(0) 编辑

SQL2008-删除时间字段重复的方法

摘要: ID EMAgitation_ID YieldDateTime1 2 2012-02-11 10:18:54.0002 2 2012-02-11 10:18:54.0003 2 2012-02-11 11:28:12.0004 2 2012-02-11 11:28:12.000Delete Fr... 阅读全文

posted @ 2015-07-12 10:13 疯狂delphi 阅读(314) 评论(0) 推荐(0) 编辑

SQL2008-中不想插入从复记录

摘要: If not exists (SELECT ID FROM StuffAgitationYield where EMAgitation_ID=1 and YieldDateTime'2012-06-13 00:00:00' and TraySerial=3)beginend;//if not exi... 阅读全文

posted @ 2015-07-12 10:12 疯狂delphi 阅读(258) 评论(0) 推荐(0) 编辑

导航