-1
select * from item where Item_type like'ဆဆဆ'; This is the data that I want to retrieve using Myanmar font如何在SQL'where'子句中正确使用缅甸字体?
select * from item where Item_type like'ဆဆဆ'; This is the data that I want to retrieve using Myanmar font如何在SQL'where'子句中正确使用缅甸字体?
选择* from item where item_type like N'ဆဆဆ';
数据类型是nvarchar类型,所以!对不起,我的坏语言。
我不认为有一个缅甸的SQL服务器的排序规则... https://msdn.microsoft.com/en-us/library/ms143508.aspx。那么“如何使用不支持整理的语言?https://msdn.microsoft.com/en-us/library/ms143508.aspx所以我认为这意味着?有趣的论文:http://my.duniakitab .com/ThanLwinSoft/ThanLwinSoft/MyanmarUnicode/Sorting/ – xQbert
谢谢我找到了答案! –
选择* from item where item_type like N'ဆဆဆ'; –