I have an interesting question posed by peer of how
to select only records from a table that the currency
field has cents. The following table can be considered:
[tt]
ID FName LName Dues_Paid
-- ----- ----- ---------
1 Bob Smith $14.00
2 Susan Allen $12.32
3 Tom Jones $16.87
. . . .
[/tt]
What I would like to see is a selection of only the
records that have non-zero values on the right-side of
the decimal such that the query results would be only
records with ID 2, 3, etc.
Any suggestions?
to select only records from a table that the currency
field has cents. The following table can be considered:
[tt]
ID FName LName Dues_Paid
-- ----- ----- ---------
1 Bob Smith $14.00
2 Susan Allen $12.32
3 Tom Jones $16.87
. . . .
[/tt]
What I would like to see is a selection of only the
records that have non-zero values on the right-side of
the decimal such that the query results would be only
records with ID 2, 3, etc.
Any suggestions?