Abid Ali
Abid Ali

Reputation: 3

Access DataBase Query

hey, my question is that i want to display the names whose payment type is empty.. what should i add after a where clause ?? please help.. and there is also another query that i want to display the names of those which starts with alphabet A.. please help...

Upvotes: 0

Views: 72

Answers (1)

Larry Lustig
Larry Lustig

Reputation: 50970

First answer:

WHERE PaymentType IS NULL

Second answer:

WHERE NAME LIKE 'A*'

Upvotes: 3

Related Questions