Hi there,
I have tables with such structure
transaction_YYM M
(idx,date,compa ny_id,value)
where YYMM stands for 2digits year and month
I want to define query (maybe view, procedure):
select * from [???] where date>='2007-01-01' and date<='2007-04-30'
which will grab data from
transaction_070 1
transaction_070 2
transaction_070 3
transaction_070 4
and return all as one
best regards
Rafal
I have tables with such structure
transaction_YYM M
(idx,date,compa ny_id,value)
where YYMM stands for 2digits year and month
I want to define query (maybe view, procedure):
select * from [???] where date>='2007-01-01' and date<='2007-04-30'
which will grab data from
transaction_070 1
transaction_070 2
transaction_070 3
transaction_070 4
and return all as one
best regards
Rafal
Comment