Split 程序代碼
復(fù)制代碼 代碼如下:
%attribs="商場名^^快餐店名^^報停名"
names=Split(attribs,"^^")
i=0
for each name in names
response.write names(i)"br>"
i=i+1
next
%>
程序拆分結(jié)果:
商場名
快餐店名
報停名
根據(jù) Split 結(jié)果生成 SQL 語句
復(fù)制代碼 代碼如下:
%attribs="商場名^^快餐店名^^報停名"
names=Split(attribs,"^^")
i=0
sql="select top 10 * from TableName where"
for each name in names
if names(i)="商場名" then
sql=sql+" or 商場 like '%"names(i)"%'"
end if
if names(i)="快餐店名" then
sql=sql+" or 快餐店 like '%"names(i)"%'"
end if
if names(i)="報停名" then
sql=sql+" or 快餐店 like '%"names(i)"%'"
end if
i=i+1
next
sql=sql+" Ordey by Id DESC"
sql=Replace(sql, "where or", "where")
response.write sql
%>
程序運行結(jié)果:
復(fù)制代碼 代碼如下:
select top 10 * from TableName where 商場 like '%商場名%' or 快餐店 like '%快餐店名%' or 快餐店 like '%報停名%' Ordey by Id DESC
您可能感興趣的文章:- access數(shù)據(jù)庫的一些少用操作,ASP,創(chuàng)建數(shù)據(jù)庫文件,創(chuàng)建表,創(chuàng)建字段,ADOX
- ASP ACCESS 日期操作語句小結(jié) By Stabx
- asp 獲取access系統(tǒng)表,查詢等操作代碼
- Asp 操作Access數(shù)據(jù)庫時出現(xiàn)死鎖.ldb的解決方法
- asp.net(C#) Access 數(shù)據(jù)操作類
- asp實現(xiàn)的查詢某關(guān)鍵詞在MSSQL數(shù)據(jù)庫位置的代碼
- asp 在線備份與恢復(fù)sqlserver數(shù)據(jù)庫的代碼
- asp終極防范SQL注入漏洞
- asp連接mysql數(shù)據(jù)庫詳細實現(xiàn)代碼
- asp連接access、sql數(shù)據(jù)庫代碼及數(shù)據(jù)庫操作代碼
- asp操作access提示無法從指定的數(shù)據(jù)表中刪除原因分析及解決
- asp執(zhí)行帶參數(shù)的sql語句實例
- ASP 連接 SQL SERVER 2008的方法
- ASP通過ODBC連接SQL Server 2008數(shù)據(jù)庫的方法
- ASP語言實現(xiàn)對SQL SERVER數(shù)據(jù)庫的操作