0
I have a table with values every month of several years, I would like to separate each year with the respective index calculation for another table or make the queries in this same table, as I would separate?
anomes indice
201201 0.48
201202 0.48
201203 0.19
201204 0.63
201205 0.39
201206 0.15
201207 0.5
201208 0.45
201209 0.62
201210 0.57
201211 0.51
201212 0.73
201301 0.78
201302 0.61
201303 0.42
Why do you need different tables? Wouldn’t it be enough to select each year with a simple WHERE clause? Who knows a view for each year if a different "table" is essential for each year?
– anonimo