I am trying to get the max + 1 value from one column, and all of the values from another column. However, my query does not give any results.
For example,
 SectionItemID   SectionItem
 1                    blue
 2                    red
The query should return
SectionItemID    SectionItem
3                    blue
                     red
Heres what I have
SELECT SectionItem,MAX(SectionItemID) + 1 AS SectionItemID FROM Core.SectionItem_Lkup 
 
     
     
    