LIKE operator in medoo

╄→尐↘猪︶ㄣ 提交于 2020-12-06 04:25:43

问题


How can i use LIKE operator in this sql statement using medoo framework?

Original SQL statement:

SELECT id,name FROM table WHERE name LIKE %'foo'%

medoo statement:

$data=$db->select('table',
    ['id','name'],
    ['AND' => ['name' => 'foo']
    ]
);

thanks for your help!


回答1:


Use like condition like this [~] Refer the link

$data=$db->select('table',
    ['id','name'],
    ['AND' => ['name[~]' => 'foo']

]);



回答2:


$data = $db->select('table',['id','name'],['name[~]' => 'foo']);


来源:https://stackoverflow.com/questions/38461660/like-operator-in-medoo

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!