摘要:
2010-04-21 21:08表:id name type1 a t12 b t23 c t3我想查 各类别的前10条记录 SQL怎么写测试如下:create table Product(Id int identity primary key,[Name] varchar(20),[Type] int not null)insert into Product values('a',1)insert into Product values('b',1)insert into Product values('c',1)insert into Pro
阅读全文
posted @ 2012-02-23 22:27
风中灵药
阅读(280)
推荐(0)
编辑
摘要:
2010-04-13 15:00select * into t from(select 1 as id,'中国' as [name],0 as parentId union allselect 2,'江西',1 union allselect 3,'浙江',1 union allselect 4,'杭州',3 union allselect 5,'南昌',2 union allselect 6,'桐乡',4 union allselect 7,'桐炉',4 union allsele
阅读全文
posted @ 2012-02-23 22:26
风中灵药
阅读(144)
推荐(0)
编辑
摘要:
2008-09-26 11:23在 JS(JavaScript) 操作cookies比较复杂,在 ASP 里面我们只需要知道 cookie 的名称、cookie 的值就行了,而 JS 里面,我们面对的是 cookie 的字符串,你自己编写这个字符串写入客户端,然后自己解析这个字符串。一、从写 cookie 说起。var the_date = new Date("December 31, 2020");var expiresDate = the_date.toGMTString();document.cookie = "userDefineCSS=" +
阅读全文
posted @ 2012-02-23 22:25
风中灵药
阅读(263)
推荐(0)
编辑