select a.*,(select table1 .name from table1 where table1.id=a.table1ID) from table as a

select a.*,b.* from table as a,table1 as b where a  b.id=a.table1ID

select a.* ,b.* from table as a left join table1 as b on b.id=a.table1ID

相关文章:

  • 2021-12-15
  • 2021-12-10
  • 2021-11-30
  • 2021-12-05
  • 2021-06-12
  • 2022-12-23
  • 2021-11-03
猜你喜欢
  • 2021-12-10
  • 2021-12-03
  • 2022-12-23
  • 2021-06-29
  • 2022-12-23
相关资源
相似解决方案