Nov 23, 2002 #1 perlTest Programmer Joined Nov 16, 2002 Messages 14 Location US Hi, Currently I have a table called 'software' and for the price column, it has the following: table: software; id | pid | price 910 1054 $475 911 1055 $501 How do I remove that "$" dollar sign? Thank You. -Matt
Hi, Currently I have a table called 'software' and for the price column, it has the following: table: software; id | pid | price 910 1054 $475 911 1055 $501 How do I remove that "$" dollar sign? Thank You. -Matt
Nov 24, 2002 1 #2 piti Technical User Joined Apr 12, 2001 Messages 627 Location SK UPDATE software SET price = TRIM(LEADING '$' FROM price) Upvote 0 Downvote
Nov 25, 2002 Thread starter #3 perlTest Programmer Joined Nov 16, 2002 Messages 14 Location US Thank You! Upvote 0 Downvote