Need some help with a SELECT query.
I have a table
I want to select the following records:
1. - Selected = True
2. - TypeID = 1 or 2
+
3. - If TypeID = 3, 4, 5 then LumpSum = True
The recordset i want is a combination of 2 and 3. Keep in mind that 1 is assumed for both recordsets
Thanks
I have a table
Code:
Table
-------
ID
TypeID[Foreign Key]
Selected [checkbox]
LumpSum [checkbox]
I want to select the following records:
1. - Selected = True
2. - TypeID = 1 or 2
+
3. - If TypeID = 3, 4, 5 then LumpSum = True
The recordset i want is a combination of 2 and 3. Keep in mind that 1 is assumed for both recordsets
Thanks