Feb 2, 2005 #1 NSMan Technical User Aug 26, 2004 72 US How can I do this, or can I? Update table set column1 = ' 'hi' '
Feb 2, 2005 #2 JamesLean Programmer Dec 13, 2002 3,059 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