oracle和SQLserver数据库中select into 的区别

在Oracle中是这样的

Create tableA as select * from tableB where 1=0 or 1=1


在SQLserver中是这样的

select * into table A from tableB where 1=0 or 1=1
原文地址:https://www.cnblogs.com/canyangfeixue/p/4082467.html