Anyway to find out how many fields are populated in a query on my Access 2000 database?
In the below I need to create a query to give me a count of 4 because 4 fields are populated:
This one would be a count of 3:
Please advise?
In the below I need to create a query to give me a count of 4 because 4 fields are populated:
Code:
TableOne:
Id firstName LastName City State
1 John Jones San Diego
This one would be a count of 3:
Code:
TableOne:
Id firstName LastName City State
1 John San Diego
Please advise?
Code:
select * from TableOne where LastName = "Jones";