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
Description
Statement.table. If it exists and is an unexpected value, it may cause the query to not meet expectations.
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: