Feb 2, 2005 #1 NSMan Technical User Joined Aug 26, 2004 Messages 72 Location US How can I do this, or can I? Update table set column1 = ' 'hi' '
Feb 2, 2005 #2 JamesLean Programmer Joined Dec 13, 2002 Messages 3,059 Location GB Just double up the single quotes: Code: UPDATE t1 SET c1 = '''hi''' Would give the value 'hi' (including quotes) in the column. --James Upvote 0 Downvote
Just double up the single quotes: Code: UPDATE t1 SET c1 = '''hi''' Would give the value 'hi' (including quotes) in the column. --James
Feb 2, 2005 Thread starter #3 NSMan Technical User Joined Aug 26, 2004 Messages 72 Location US Thanks! Upvote 0 Downvote