Can insert ≥ symbol but..it shows ≥ as = sign....can't get ≥ sign

  • hi friends,

    I Can insert ≥ symbol into table but..it shows ≥ as = sign....

    when i retrieve values from that table can't get ≥ sign..its showing =..

    can anybody hav idea about this issue

    thanks in advance

    Gani

    GaNeSH

  • First of all you column must be a nchar or nvarchar column.

    When you can do like this:

    CREATE TABLE t1( c1 NVARCHAR(10))

    GO

    INSERT INTO t1

    VALUES(NCHAR(8805))

    GO

    SELECT * FROM t1

    GO

    DROP TABLE t1

    [font="Verdana"]Markus Bohse[/font]

  • ThanQ very much Markus Bohse

    GaNeSH

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

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