server中插入卢比符号

server中插入卢比符号

本文介绍了如何在sql server中插入卢比符号的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

大家好



请告诉我在sql server中插入当前卢比符号的查询。

我必须显示所有货币组合框中的符号。



Hi all

Please tell me the query to insert current rupee symbol in sql server.
I have to display all the currency symbols in a combo box.

INSERT INTO dbo.currency (country,currency,code,symbol) VALUES ('India','Rupees','INR',NCHAR(8425));     





我尝试了以上但是它没有显示输出。



谢谢你



I tried the above but it's not showing the output.

Thank you

推荐答案

select UNICODE(N'₹'), NCHAR(8377)


INSERT INTO dbo.currency (country, currency,code, symbol) VALUES ('India', 'Rupees', 'INR', N'₨');





注意:文本列必须是nvarchar或nchar类型。



Note: the text column has to be of type nvarchar or nchar.


select UNICODE(N'₹'), NCHAR(8377), 'INR ' + NCHAR(8377)





希望这会有所帮助。



Hope this helps.


这篇关于如何在sql server中插入卢比符号的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-30 08:53