一、创建表 tiku_koushi
if exists (select * from dbo.sysobjects where id =
object_id(N''[dbo].[tiku_koushi]'') and OBJECTPROPERTY
(id, N''IsUserTable'') = 1)
drop table [dbo].[tiku_koushi]
GO
中国站长_站,为中文网站提供动力
CREATE TABLE [dbo].[tiku_koushi] (
[id] [int] IDENTITY (1, 1) NOT NULL ,
[title] [varchar] (250) COLLATE
Chinese_PRC_CI_AS NULL ,
Www@ @com
[list2_id] [char] (10) COLLATE @com
Chinese_PRC_CI_AS NULL 中.国.站.长.站
) ON [PRIMARY] @com
GO 站长.站
二、存储过程 sp_c
CREATE proc sp_c
@tablename varchar(50),
@title varchar(250), [中国站长站]
@list2_id varchar(50)
as
if @tablename=''tiku_koushi''
select count(*) from tiku_koushi where title like ''%'' @title ''%'' and list2_id=@list2_id
GO
中国站长.站
三、存储过程 sp_search_tiku
CREATE PROCEDURE sp_search_tiku
Www^ ^com
@tablename varchar(50), 站.长.站
@title varchar(250), 中国站.长.站
@list2_id varchar(10),
@pagesize int,
@page int 中.国.站长站
AS
Www.
if @tablename=''tiku_koushi''
begin 中.国.站.长.站
declare @ks int
中国站.长.站
declare @str varchar(200) _com
set @ks=@pagesize*(@page-1)
if not exists (select * from dbo.sysobjects where id = object_id(N''[dbo].[temp_table91]'') and OBJECTPROPERTY(id, N''IsUserTable'') = 1)
Www_ _com
begin
站.长.站
select * into temp_table91 from tiku_koushi where
title like ''%'' @title ''%'' and list2_id=@list2_id order
by id desc
set rowcount @pagesize
set @str=''select * from temp_table91 where id not in
(select top '' str(@ks) '' id from temp_table91)''
execute(@str)
drop table temp_table91 站长.站
end
站长.站
end
GO
四、search_koushi.asp @com
else
%>
Www^ ^com
