Click here to Skip to main content
15,908,673 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more: , +
Hello! All,
I have inserted the a record in Hindi in my SQL Server 2008 R2 from my ASP.Net Application by using the following SQL statement:

-- MarqueeText Column is nvarchar(max)

Insert into Marquee(MarqueeText) Values(N'हिन्दी')

this inserted the values into the database, now how can I Update this so that I can write something more into this column.

Thanks in advance.
Posted
Updated 30-Jun-14 19:15pm
v2

SQL
UPDATE Marquee SET MarqueeText =N'हिन्दी शब्द'
 
Share this answer
 
Comments
Nischal Bhatt 1-Jul-14 2:07am    
Thanks that helped.
SQL
update Marquee
set MarqueeText =N'नया पाठ...'
where MarqueeText =N'हिन्दी'
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900