We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bffaf61 commit 1178e67Copy full SHA for 1178e67
1 file changed
user_guide_src/source/database/query_builder/040.php
@@ -1,6 +1,6 @@
1
<?php
2
3
-$builder->like('title', 'match', 'none'); // Produces: WHERE `title` LIKE 'match' ESCAPE '!'
+$builder->like('title', 'match', 'none'); // Produces: WHERE `title` LIKE 'match' ESCAPE '!'
4
$builder->like('title', 'match', 'before'); // Produces: WHERE `title` LIKE '%match' ESCAPE '!'
5
$builder->like('title', 'match', 'after'); // Produces: WHERE `title` LIKE 'match%' ESCAPE '!'
6
$builder->like('title', 'match', 'both'); // Produces: WHERE `title` LIKE '%match%' ESCAPE '!'
0 commit comments