Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Update query

Status
Not open for further replies.

ojosVerdes

Technical User
Oct 10, 2002
50
US
I have a table [tMembers] that in the NewCollector field it has either null[blank] or 1.

What I want to do is run an update querry to change all the blanks to No and the 1's to yes.

how do I do this?

Thanks in advance
 
Update tMembers set NewCollector = 'No' where Len(NewCollector)=0
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top