G
Guest
Say I wanted to do an aggregate sum (using the Northwind examples in MSDN
help) where relationships between 2 datatables exist, I would use:
SUM(Child.Price)
However, if I have a "IsDeleted" column in the child table, how would I
change the expression? I would need something like:
SUM(Child.Price WHERE Child.IsDeleted = 'FALSE')
Can anyone help me figure out what expression would work? Any tips would be
greatly appreciated.
help) where relationships between 2 datatables exist, I would use:
SUM(Child.Price)
However, if I have a "IsDeleted" column in the child table, how would I
change the expression? I would need something like:
SUM(Child.Price WHERE Child.IsDeleted = 'FALSE')
Can anyone help me figure out what expression would work? Any tips would be
greatly appreciated.