Reputation: 3
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
Reputation: 50970
First answer:
WHERE PaymentType IS NULL
Second answer:
WHERE NAME LIKE 'A*'
Upvotes: 3