mikefight
Programmer
- Feb 2, 2007
- 14
Cr 11
sql data base
I have a 4 tables, accounts, names, shares, cards
I only want accounts without a certain card type, with a certain share, without name suffix I am getting the account that match the the account statements in the select, such as close date is null on account, but it is also pulling accounts that do not match the other criteria. If the name has a suffix I do not want it to pull the account at all. I am getting the account number with a blank name. I am getting accounts with cards in the not statement.
here is my select:
isnull({ACCOUNT.CLOSEDATE}) and
isnull({SAVINGS.CLOSEDATE}) and
{SAVINGS.TYPE} = 0 and
{SAVINGS.BALANCE} >= $5.00 and
not ({ACCOUNT.TYPE} in [1, 10, 11, 12, 13, 14, 16, 17, 21, 23, 24, 8, 9]) and
datediff("yyyy", {NAME.BIRTHDATE},currentdate) >=18 and
not ({CARD.TYPE} in [20,21,22,23,24,25,41]) and
{NAME.SUFFIX} = "" and
sql data base
I have a 4 tables, accounts, names, shares, cards
I only want accounts without a certain card type, with a certain share, without name suffix I am getting the account that match the the account statements in the select, such as close date is null on account, but it is also pulling accounts that do not match the other criteria. If the name has a suffix I do not want it to pull the account at all. I am getting the account number with a blank name. I am getting accounts with cards in the not statement.
here is my select:
isnull({ACCOUNT.CLOSEDATE}) and
isnull({SAVINGS.CLOSEDATE}) and
{SAVINGS.TYPE} = 0 and
{SAVINGS.BALANCE} >= $5.00 and
not ({ACCOUNT.TYPE} in [1, 10, 11, 12, 13, 14, 16, 17, 21, 23, 24, 8, 9]) and
datediff("yyyy", {NAME.BIRTHDATE},currentdate) >=18 and
not ({CARD.TYPE} in [20,21,22,23,24,25,41]) and
{NAME.SUFFIX} = "" and