本文介绍了如何在Sql Server中选择古吉拉特语数据的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

您好,



我的桌子名为



Tbl_Employee



没有名字(nvarchar(max))
1મારશલ
2કેમરુન
3બ્રાઉન







现在我想搜索如下



 选择 * 来自 Tbl_Employee 其中​​ Name = ' કેમરુન' 









 选择 * 来自 Tbl_Employee 其中名称喜欢 ' %' + ' કેમરુન' + ' %' 





但是没有返回任何记录。

我怎么能完成它。



如果有任何其他想法来管理古吉拉特语,请帮助



先谢谢。非常感谢

解决方案



Hello,

I have table named

Tbl_Employee

No    Name (nvarchar(max))
1     મારશલ
2     કેમરુન
3     બ્રાઉન




now i want to search like

select * from Tbl_Employee where Name = 'કેમરુન'



or

select * from Tbl_Employee where Name like '%' + 'કેમરુન' + '%'



but doesn't return any record.
how can i accomplish it.

If any other idea to manage gujarati please help

Thanks in Advance. Thanks a lot

解决方案



这篇关于如何在Sql Server中选择古吉拉特语数据的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-09 23:19