Home  >  Article  >  Database  >  sql判断且增加字段ADD

sql判断且增加字段ADD

WBOY
WBOYOriginal
2016-06-07 16:19:061530browse

sql 判断且增加字段 % Dim i,Rs,Sql,Table,Column,Bool Table = A Column = B Bool = False sql=Select * From [Table] Set Rs = Conn.ExeCute(Sql) For Each i In Rs.Fields 'Response.Write(i.Namebr) If i.Name=Column Then Bool = True Exit For End If

 sql 判断且增加字段

Dim i,Rs,Sql,Table,Column,Bool
Table = "A"
Column = "B"
Bool = False
sql="Select * From ["&Table&"]"
Set Rs = Conn.ExeCute(Sql)
For Each i In Rs.Fields
'Response.Write(i.Name&"
")
If i.Name=Column Then
Bool = True
Exit For
End If
Next
If Bool Then
Response.Write("在《"&Table&"》表中,存在《"&Column&"》列!")
Else
Response.Write("在《"&Table&"》表中,不存在《"&Column&"》列!")
End If
%>

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn