sql 判斷且增加字段
<%
Dim i
Table = "A"
Column = "B"
Bool = False
sql="Select * From ["&Table&"]"
Set Rs = Conn
For Each i In Rs
If i
Bool = True
Exit For
End If
Next
If Bool Then
Response
Else
Response
End If
%>
From:http://tw.wingwit.com/Article/program/MySQL/201311/29534.html