asp取得資料庫中最後的ID

2022-08-11 01:30:19 字數 653 閱讀 7455

1樓:天驢飛翔

呵呵,不用 count(id)

這樣寫 sql:

select top 1 id from table order by id desc

呵呵,取出這個 sql 裡面的 id ,就是你需要的 id 了 。

呵呵,這個 sql 可以看懂否?

2樓:呼和海天

sql = "select max(id) from table"

set rs=server.createobject("adodb.recordset")

rs.open sql,conn,1,1

sid = rs(0)

rs.close

set rs=nothing

說明:sid代表最大id

3樓:匿名使用者

可以用adodb.recordset

裡面的recordcount

4樓:匿名使用者

<%dim abc:abc=conn.execute(select top 1 id from table order by id desc)(0)

if rs("id")") else response.write("") end if%>

asp資料庫連線問題,asp資料庫連線問題

貼那麼多 幹嘛,不說重點 有無出錯提示?有的話,是第幾行?那一行 是哪句?if password rs password then 當你open時查詢記錄為空時,再下面這條判斷密碼的if不成立,則會出錯。中間要加個if rs.eof false and rs.bof false then 把你的連線...

asp 寫入資料庫的問題,asp 資料庫問題

name trim name if len name 0 then name為空!email trim email if len email 0 then email為空!city trim city if len city 0 then city為空!message trim message if...

asp技術訪問資料庫的過程

首先要設定iss的權力和asp訪問的是什麼型別的資料庫,讓iss擁有修改資料的許可權和資料庫的種類.然後在asp 中插入sql語言就可以了.介紹哈asp.net吧!1.要開啟sql伺服器,將資料庫檔案匯入到資料中2.編寫訪問資料的配置檔案 3.編寫訪問資料庫的類 4.用對應的型別儲存讀取資料庫中的資...