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.
好的,伙计们,这是我的问题,我有一个带有“fname,lname,mname”字段的数据库表我可以在每个字段上找到重复项,但我想在所有 3 个字段或类似字段中重复以考虑 O 型
任何帮助将不胜感激。
谢谢
如果我的意思正确,您可以使用以下内容:
select * from tablename a, tablename b where a.lname=b.lname and a.fname=b.fname and a.mname=b.mname
其中 tablename 在检查表下。我在我的 sql 中测试了它。