摘要:
MySQL有个limit可以查询N-M行记录,但是SQL SERVER没有limit只有个TOP还是查询前几条记录。 有两种方法: 一是先得到前m条,再反查前m-n条。 select top (m-n) * from (select top m * from table order by id desc) 二是: select ... 阅读全文
posted @ 2007-08-18 12:58 analyzer 阅读(395) 评论(0) 推荐(0)
|
|||
|
摘要:
MySQL有个limit可以查询N-M行记录,但是SQL SERVER没有limit只有个TOP还是查询前几条记录。 有两种方法: 一是先得到前m条,再反查前m-n条。 select top (m-n) * from (select top m * from table order by id desc) 二是: select ... 阅读全文
posted @ 2007-08-18 12:58 analyzer 阅读(395) 评论(0) 推荐(0)
摘要:
Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ --> 1 Quote:\\1", 22 "$title\\3", 23 "cuturl('\\1\\2')", 24 "\\2", 25 "\\3", 26 "\\... 阅读全文
posted @ 2007-08-18 12:56 analyzer 阅读(430) 评论(0) 推荐(0)
摘要:
Apache虚拟目录的设置 Alias /uploads "D:/Program Files/Apache2/uploads" Options Indexes FollowSymLinks Order allow,deny Allow from all Apache虚拟主机的设置 NameVirtualHost *:80 ## VirtualHost exa... 阅读全文
posted @ 2007-08-18 12:52 analyzer 阅读(250) 评论(0) 推荐(0) |
|||