create  view  V_tableTemp as  select a.* from TEMPCLIENT a ,TEMPCLIENTSTUFF b where a.CORNO<>'' and a.CORNO = b.CORNO

select * from V_tableTemp

 

sqlserver 中创建表按照视图结构,并插入数据。相当于 oracle 中 create table tableTemp as  V_tableTemp
SELECT * INTO tableB    from  V_tableTemp

相关文章:

  • 2021-07-10
  • 2021-12-09
  • 2021-10-29
  • 2022-03-02
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-07-03
  • 2021-04-19
  • 2021-11-21
  • 2022-12-23
相关资源
相似解决方案