asp 简单的问题
--------------------------------
id id2
1 1
2 0
3 0
---------------------------------
id 为自动编号 当我判断id=1的时候 id2项为1 怎么给其他的id为0,一下蒙了
UPDATE id2=1 WHERE id=1;
UPDATE id2=0 WHERE id <>1;
这样吗?
UPDATE table SET id2=1 WHERE id=1;
UPDATE table SET id2=0 WHERE id <>1;
能不能只用一个sql语句
<%
skin=request("skin")
if request("skin") <>"" then
Set rs=Server.CreateObject("adodb.recordSet")
rs.open "select * from skin where skin='"&skin&"'",conn,1,3
rs("style")=1
rs.update
rs.close
Set rs=Server.CreateObject("adodb.recordSet")
rs.open "select * from skin where skin <>'"&skin&"'",conn,1,3
rs("style")=0
rs.update
rs.close
set rs=nothing
end if
%>
我这样写也不行不知道怎么弄,插入的那个rs("style")是为1 可是没给条件的rs("style")还是为1
自动编号好像不可写的。
SQL code:
update table
set id2 = 0
where (select count(*) from table where id=1 and
相关问答:
问题:当网页文件超过显示器分辨率的时候,垂直滚动条应该出现的,但为什么水平滚动条也出现呢?如何去掉啊,下面是截图和框架页面代码:
http://hi.baidu.com/w511170721/album/item/a61278226d558e4f9922ed13.h ......
<!--#include file="Conn.asp"-->
<body>
<table border="0" align="left" cellpadding="0" cellspacing="0">
<%
URL ......
初学asp 知道可以定义多维数组
Dim a(5,3,2)
但是看到另外一种写法
Dim thisarray(1 to 10,-4 to 5, 5 to 11)
但是编译的时候出错
错误描述:缺少 ')'
如果解决??
VBScript和V ......
id lbname topid ceng
1 产品1 0 1
16 产品2 0 1
17 产品3 0 1
18 产品4 0 1
19 产品5 0 1
20 产品6 0 1
21 产品7 0 1
22 产品8 0 1
23 产品9 0 1
24 产品10 0 1
25 产品11 0 1
......