Kitura / Swift-Kuery-ORM

An ORM for Swift, built on Codable
Apache License 2.0
212 stars 30 forks source link

Does the QueryParams support 'LIKE' filter? #61

Open diuming opened 6 years ago

diuming commented 6 years ago

SQL Statement

SELECT a, b FROM t1 WHERE (a LIKE '%b' OR a = 'apple') AND b > 5 ORDER BY b ASC, a DESC OFFSET 5;

thanks