golang
DB.Select("name, vin_id").Where("UPPER(name) LIKE UPPER(?)", "%"+name+"%").Find(&vins)
Why is this working??? Golang GORM
SQL
select * from Table_Name
where UPPER(Column_Name) = UPPER('mY Any Value')
I want the search to the table to be case insensitive