2개의 db를 동시에 ...
본문
2개의 db에서 동시에 wr_1의 갯수 이런식으로 셀수 잇나요?
ex) select * from g5_write_01 and g5_write_02
이런식으로 선택이 될까요? ㅠㅠ
안되네요 ㅠㅠ
답변 2
select sum(cnt) cnt from (
select count(wr_1) cnt from g5_write_01 where wr_1 is not null and wr_1 != ''
union all
select count(wr_1) cnt from g5_write_02 where wr_1 is not null and wr_1 != ''
) x
select
(select count(*) from g5_write_01) cnt1,
(select count(*) from g5_write_02) cnt2
답변을 작성하시기 전에 로그인 해주세요.