Skip to content

Instantly share code, notes, and snippets.

@vortec
Created January 15, 2015 10:23
Show Gist options
  • Save vortec/2bd303ff6966234635eb to your computer and use it in GitHub Desktop.
Save vortec/2bd303ff6966234635eb to your computer and use it in GitHub Desktop.
mysql> SELECT 'hi' SOUNDS LIKE 'hai';
+------------------------+
| 'hi' SOUNDS LIKE 'hai' |
+------------------------+
| 1 |
+------------------------+
1 row in set (0.00 sec)
mysql> SELECT 'hi' SOUNDS LIKE 'no';
+-----------------------+
| 'hi' SOUNDS LIKE 'no' |
+-----------------------+
| 0 |
+-----------------------+
1 row in set (0.00 sec)
mysql>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment