BigQuery 中不区分大小写的 LIKE

Case insensitive LIKE in BigQuery

有没有办法使用不区分大小写的 LIKE,例如LIKE device_type LIKE '%iphone 7%' 在 BigQuery 中?

为什么不在两边都使用"Upper"? upper(device_type) LIKE upper('%iphone 7%')?还是 "Lower" ?