分类.sql 757 B

1234567891011121314151617181920212223
  1. select *
  2. from (
  3. SELECT t1.ttypedetailid,
  4. t1.fvalue,
  5. t1.ftype,
  6. t1.fparentid
  7. FROM ttypedetail t1
  8. where t1.fparentid in (SELECT ttypedetailid FROM ttypedetail where fparentid = 1)
  9. and t1.fisused = 1
  10. and $where$
  11. UNION
  12. SELECT t1.ttypedetailid,
  13. t1.fvalue,
  14. t1.ftype,
  15. t1.fparentid
  16. FROM ttypedetail t1
  17. WHERE t1.ttypedetailid in (SELECT ttypedetailid
  18. FROM ttypedetail_auth
  19. WHERE position in (SELECT wechat_position FROM tuser WHERE tuserid = $tuserid$))
  20. and $where$
  21. ) a
  22. order by ttypedetailid desc