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

Update query to a blank value

Status
Not open for further replies.

esu4edp

Technical User
Feb 15, 2000
59
US
I want to run an update query on a field that has a value of "C" right now. I can do the query but not sure what to put as the new value in enterprise manager. I dont want to put "null" cause that is not considered blank. Any suggestions!
 
use two single quotes without a space between them.

Like this.

UPDATE table
set value = ''
where value = 'C'

- Paul
10qkyfp.gif

- If at first you don't succeed, find out if the loser gets anything.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top