Hi, Can I have multiple select statements using one WITH statement? WITH t AS ( Select A, B from … ) SELECT A into tableA FROM t where ….; SELECT B into tableB FROM t where ….; |
Hi, Can I have multiple select statements using one WITH statement? WITH t AS ( Select A, B from … ) SELECT A into tableA FROM t where ….; SELECT B into tableB FROM t where ….; |