我有一个包含字段的表title
,我需要获取每个字段的前 3 个字母数字字符title
。一些title
有",',\t,\n,
前缀或空格的值 - 这应该被忽略。
+--------+-----------------------------------------+---------------------+
| id | title | desired output |
+--------+-----------------------------------------+---------------------+
| 1 | "abcd" | abc |
| 2 | 'lostworld | los |
| 3 | \tsonof | son |
| 4 | 12amrt | 12a |
+--------+-----------------------------------------+---------------------+
desired output
是我正在寻找的输出。如果有人可以建议可以处理所有情况的通用查询,那就太好了。
仅使用 MySQL 寻找解决方案。