select fnumber,fname,fspecification from wj_v_icitem_jbxx where FMASTERID<>1476921 and fuseorgid=1 and (substr(fnumber,0,7), fname, fspecification) in(select substr(fnumber,0, 7),fname,fspecification from wj_v_icitem_jbxx where fuseorgid = 1 and FMASTERID =1476921)
时间: 2024-04-05 22:35:38 浏览: 66
这个问题是一个 SQL 查询语句,它的作用是查询wj_v_icitem_jbxx表中的fnumber、fname和fspecification字段,但是要求FMASTERID不等于1476921且fuseorgid等于1,并且这些字段的组合必须在另一个子查询中出现过,该子查询查询条件为fuseorgid等于1且FMASTERID等于1476921。简单来说,就是查找和另一个指定条目具有相同fnumber、fname和fspecification的条目。
阅读全文