mareimorsy / DB

Simple PHP Query Builder class
106 stars 76 forks source link

إستفسار من فضلك #2

Closed CharifMakaoui closed 7 years ago

CharifMakaoui commented 8 years ago

هل المكتبة تدعم select * from table where name in (val1,val2)

mareimorsy commented 8 years ago

Yes, you can run this query using MareiDB class by using raw queries like this : $sql = "select * from table where name in (?,?)"; $rows = $db->query($sql, [val1, val2]); https://github.com/mareimorsy/DB#using-raw-queries-