我正在 SQL 中運(yùn)行以下查詢。SET @thisid=0;SET @serial=0;SELECT @serial := IF((@thisid != `places`.`id`), @serial + 1, @serial) as `serial`, @thisid := `places`.`id`, `places`.`id` FROM `places`;僅當(dāng)新 id 與上一個(gè) id 不同時(shí),變量 @serial 基本上才會(huì)遞增。在終端中運(yùn)行這些查詢并打印 @serial 和 @thisid 的值時(shí),收到的值是 @thisid='id6' @serial=6。我在我的 go 代碼中執(zhí)行了這個(gè)查詢:if _, err = repo.db.ExecContext(ctx, "SET @thisid=0;"); err != nil { return}if _, err = repo.db.ExecContext(ctx, "SET @serial=0;"); err != nil { return}rows, err = repo.db.QueryContext(ctx, fmt.Sprintf( "SELECT @serial := IF((@thisid != `places`.`id`), @serial + 1, @serial) as `serial`, @thisid := `places`.`id`, `places`.`id` FROM `places`;",))if err != nil { fmt.Println("error here") return}if err = repo.db.QueryRow("SELECT @serial").Scan(&that); err != nil { return}if err = repo.db.QueryRow("SELECT @thisid").Scan(&this); err != nil { return}打印@thisid和@serial的值時(shí),@thisid的值與@serial的值接收為0相同。它似乎沒(méi)有動(dòng)態(tài)更新。
2 回答

www說(shuō)
TA貢獻(xiàn)1775條經(jīng)驗(yàn) 獲得超8個(gè)贊
Go 使用連接池,這意味著每個(gè)查詢可能發(fā)生在不同的連接上。類似的變量的作用域是連接。如果您需要它們?cè)诓樵冎g持續(xù)存在,則需要使用事務(wù)來(lái)確保保持在同一連接內(nèi)。

慕慕森
TA貢獻(xiàn)1856條經(jīng)驗(yàn) 獲得超17個(gè)贊
你的查詢真的很隨意。MySQL 不保證select. 它也不保證結(jié)果集的順序。
所以,我想你想要:
select p.*,
(@rn := if(@id = id, @rn + 1,
if(@id := id, 1, 1)
)
) as serial
from (select p.*
from places p
order by p.id
) p cross join
(select @id := 0, @rn := 0) params;
- 2 回答
- 0 關(guān)注
- 176 瀏覽
添加回答
舉報(bào)
0/150
提交
取消