Jump to content

T.Stedel

New Members
  • Posts

    4
  • Joined

  • Last visited

    Never

Posts posted by T.Stedel

  1. Can you elaborate more? If your question is as simple as I think, then knowing that \ will force anything directly after it to be interpretted literally in a database will probably help you out (Except for predefined escape sequences).

    INSERT INTO table VALUES('This is a \" test');
    Inserts: This is a " test

    Edit:

    Looking at your post a little bit, I might understand your problem better.

    UPDATE table SET column = replace(column, '\"', 'feet');
    Does that sound plausible?

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.