Test 数据库declare @sql varchar(8000)declare @sql2 varchar(8000)set @sql='' set @sql2='' select @sql=@sql+','+code from ExtentData group by codeselect @s...
分类:
其他好文 时间:
2014-08-05 18:56:09
阅读次数:
264
def declare_consumer(self, consumer_cls, topic, callback): """Create a Consumer using the class that was passed in and add it to our...
分类:
编程语言 时间:
2014-08-05 15:26:59
阅读次数:
291
转至:https://github.com/CSSLint/csslint/wiki/Bulletproof-font-faceWhen using @font-face to declare multiple font types for cross browser compatibility, ...
分类:
Web程序 时间:
2014-08-05 10:49:39
阅读次数:
700
--利用sqlserver来运算斐波那契规律declare @number intdeclare @A intdeclare @B intdeclare @C intset @A=1set @B=2set @Number=3select @C=@A+@Bwhile(@Number0) goto er...
分类:
数据库 时间:
2014-08-04 21:23:58
阅读次数:
279
把一列数据拼接成一个字符串比较简单:declare @test varchar(500)set @test='';select @test=@test+name+',' from personselect @test 但是如果数据中有重复选项,想去掉重复的就比较绕弯了。declare @tes...
分类:
数据库 时间:
2014-08-04 20:59:17
阅读次数:
212
1、case语法: case when 条件1 then 返回值1 when 条件2 then 返回值2 ... else 返回值N end;示例:declare i integer; str varchar2(20);begin i := 3; str := case when i =...
分类:
数据库 时间:
2014-08-03 12:38:35
阅读次数:
300
declare @spid int;declare @sql_handle binary(20);set @spid = 437SELECT @sql_handle = sql_handleFROM sysprocesses As A with (nolock)where spid = @spids...
分类:
数据库 时间:
2014-08-01 16:00:41
阅读次数:
1086
1 import java.util.regex.Matcher; 2 import java.util.regex.Pattern; 3 4 /** 5 * @declare: unicode 帮助类 6 * @author: cphmvp 7 * @version: 1.0 8 * ...
分类:
其他好文 时间:
2014-08-01 15:20:11
阅读次数:
255
---------------事务---当执行到commit时 事务才算是完成,不然 会执行rollback操作。
declare
v_money acount.money%type:=1223;
ex exception;
begin
update acount set money=money-v_money where id=1;
raise ex;
update acount ...
分类:
数据库 时间:
2014-08-01 13:39:21
阅读次数:
222
DELIMITER $$CREATE PROCEDURE `delRepeatCA`() BEGIN DECLARE tally INT DEFAULT 0; SELECT COUNT(rs.c_CA) INTO tally FROM --------赋值 (SELECT CO...
分类:
数据库 时间:
2014-08-01 10:40:31
阅读次数:
225