Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在用这样的regxp编写一个mysql选择
SELECT name FROM employees WHERE name REGEXP '^A'
什么是正则表达式语法:
任何包含gmail.com
gmail.com
谢谢
我不会在这里使用 REGEXP:
SELECT name FROM employees WHERE name LIKE '%gmail.com%';
干杯
这是你要找的吗?
REGEXP '@gmail\.com$'