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.
如何针对具有相同位数但没有破折号的 ISBN 以 000-0-0000-0000-0 格式查询 MySQL db 的 ISBN?是否有我可以使用的 SQL 正则表达式替换方法之类的?任何建议将不胜感激。
你根本不需要正则表达式。只需使用这样的东西:
select t.* from t where replace(t.ISBN, '-', '') = @MyISBN;