Here's my problem. I have an SQL statement:
SELECT * FROM table1 WHERE week_no >= 1 AND week_no <= 5
But the result only returns the following result.
Col1 | Col2 | Week_No
A B 1
C D 2
D E 4
F G 5
I tried pushing to the array result of the query the "week_no" #3 with default values but it seems it doesn't work.
I would like to know if there's a much easier way in doing it on SQL? Like inserting:
Col1 | Col2 | Week_No
R R 3
R-R as default values.
Thanks for all the help.