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 biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Add records

Status
Not open for further replies.

Elamranii

MIS
Feb 1, 2005
57
US
Hi everyone,
I want to add # 50 to a field in a table.
table1 has one field called MemberContact.
the field MemberContact has 50 or blank like this:

MemberContact
50
blank
blank
blank
50
blank
blank
blank

I want to put 50 where there is a blank?
Thanks in advance
Ismail
 
How about this:
Code:
UPDATE table1 SET MemeberContact = 50 WHERE MemberContact IS NULL
Hope this helps

HarleyQuinn
---------------------------------
Help us to help you,
read FAQ222-2244 before posting.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top