You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
db, _ = gorm.Open(mysql.Open(dsn), &config)
# use SQL
type OtherTable struct {
Name string
}
var retSQL OtherTable
db.Raw(`SELECT name FROM xxx JOIN ..... LIMIT 1;`).Scan(&retSQL )
some time, db.statement.table will be set to other_table. now, db looks like this
GORM Playground Link
#1
Description
this issue about Statement.table . in some cases, it can lead to unexpected results.
Other issuse See: go-gorm/gorm#7280
Source Code SEE: LINE 493, https://github.com/go-gorm/gorm/blob/master/statement.go
Example:
some time, db.statement.table will be set to other_table. now, db looks like this
now,If we continue to execute
maybe, we will get the following results
but our expected result is
The text was updated successfully, but these errors were encountered: