ไม่รู้ผมเข้าใจโจทย์ถูกป่าวนะ dropdown เก็บสัญลักษณ์เข้า field math ไปเลยแล้วใช้ case ช่วย
declare @temptable table (
id int identity (1,1),
data1 int , math nvarchar , data2 int
)
insert into @temptable values ('100','+','200')
select *, case when math = '+' then data1 + data2
when cal = '-' then data1 - data2
end cal_
from @temptable