I do have this table in my SQL database
Acc ID Perod1 Perod2 Perod3 Perod4 Perod5
---------------------------------------------------
1-001 30 40 70 80 70
2-002 50 60 80 60 70
3-004 60 70 80 50 40
I need to select above "Perod" columns in given range. Like "Perod1 to Perod3" or "Perod2 to Perod5". Need to write a SQL select query which can select columns with given range. Please help me.
I need SQL query like below
Select
Perod1, Perod2
from
tbl_accPeriod
where
AccID = '1-001'
but "Perod" columns I should able to give dynamically. one time it can be "Perod1 to Perod2" and next time it should be "Perod1 to Perod4". I want to do that without add IF condition.
I think you should try this,