Case-sensitive where statement in laravel

后端 未结 2 521
滥情空心
滥情空心 2021-02-04 04:50

How can I do a case-sensitive string match with laravel?


SELECT * FROM `invites` WHERE `token`=\'OGwie2e2985tOEGewgu23hUFs\'

Can be done as

2条回答
  •  难免孤独
    2021-02-04 05:27

    A little bit late but still wouldn't this be a better alternative?

    Invite::whereRaw("BINARY `token`= ?", array($token))->first()
    

提交回复
热议问题