테이블명을 변수에 저장할수 있을까요
본문
(select * from g5_write_blog_01_01 as tmp1 where wr_is_comment = 0)
union all
(select * from g5_write_blog_03_01 as tmp1 where wr_is_comment = 0)
union all
(select * from g5_write_blog_04_01 as tmp1 where wr_is_comment = 0)
union all
(select * from g5_write_blog_05_01 as tmp1 where wr_is_comment = 0)
order by wr_14 desc
위 쿼리에서 테이블명을 변수에 넣을 방법이 없을까요
테이블명 가져와서 파일을 가져와야되서요 ㅎㅎ
답변 2
(select *, 'bo_table' as 'blog_01_01' from g5_write_blog_01_01 as tmp1 where wr_is_comment = 0)
위처럼 하시면 bo_table 배열 키워드로 가져올 수 있습니다.
그냥.. 제 생각인데요 ㅋㅋ
select tmp1.*, 'g5_write_blog_01_01' 변수 from g5_write_blog_01_01 as tmp1 where wr_is_comment = 0
이렇게 하고 변수 로 받으면 될듯싶네요
답변을 작성하시기 전에 로그인 해주세요.