pdo-wrapper
pdo-wrapper copied to clipboard
not use IN operator
sql exapmle SELECT * FROM Table WHERE id IN (1, 2, 3)
pdo example $db->rows("select * from table where id IN ?",[1,2,3]);
pdo example2 $db->rows("select * from table where id IN ?",['(1,2,3)']);
testing rows other raw and run method not working