Delete " how from Query:

  • one table and only one column I have.

    column has value: "ajay"

    "ram"

    "sanju"

    I want to delete "".

    I want column value: ajay

    ram

    sanju

    Thx..

    Thanks

  • try:-

    UPDATE tablename

    SET [fieldname] = REPLACE([fieldname],'"','')

    Facts are stubborn things, but statistics are more pliable - Mark Twain
    Carolyn
    SQLServerSpecialists[/url]

Viewing 2 posts - 1 through 1 (of 1 total)

You must be logged in to reply to this topic. Login to reply