請教有關sql的問題

2022-08-19 00:25:22 字數 970 閱讀 3003

1樓:

樓主可以參考以下**:

這裡假定,

表名:test

欄位名:fldname

conn是資料庫連線物件,並已經連線到了資料庫.

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

sql="select * from test"

rs.open sql,conn,1,3

while not rs.eof

wend

response.write(str)'回顯在螢幕上,看是否正確.

'如果要存回原來的表中,並刪除原來表中的記錄,那麼就增加以下兩行**:

conn.execute sql

%>

2樓:匿名使用者

你可以把記錄全部去出來然後用字串把他們拼接出來就可以拉啊。

3樓:

select a+b+c+d+e from test

4樓:oo蒼雪

dim str as string

if rs.eof = false thenfor i = 0 to rs.recordcount - 1aa(i) = rs("pwd")

rs.movenext

str=str & aa(i)

next i

msgbox str '看看str是不是你想要的東西end if

str就是所有欄位合併的內容

先執行一個(delete語句)刪除語句:把5條記錄都刪掉再執行一個(insert語句)新增語句:把取好的5條記錄的合併後的str新增到資料庫中

請教SQL中的SELETE的問題

用更新update table set score null where id 1 update 表名 set score 0 where id 1 可以使用update update table set score null where id 1 每天登陸,回答問題,投票等都可以得分。可不可單獨刪...

有關SQL相關子查詢的問題

給你說一下有distinct和無distinct的執行過程吧 有distinct的時候,是select distinct b id from b where c id 3 這句去表裡讀id,最後取出不重複的,然後select count distinct a id from a where b id...

sql 問題,sql語句的問題?

請檢查 1,表名,就是 insert into 表名 values 有沒有錯誤 2,insert into的values 必須包含整個表的所有列,你的表只有3個列嗎?其他的可以根據列的資料型別用逗號或者兩個單引號加逗號實現。比如 insert into 表名 values 40001,3,id列,就...