I have a table column which have multiple language data.
I need to sort according to my specified language like Hindi.
How to achieve it though collation or something else?
- Column name:
Comments
- Type :
Nvarchar(MAx)
Sample column data
This is an example
To je příklad.
هذا مثال على ذلك.
उदाहरण है.
यह एक उदाहरण है.
ಈ ಒಂದು ಉದಾಹರಣೆಯಾಗಿದೆ.
Output after 'Hindi' sorting should be :
उदाहरण है.
यह एक उदाहरण है.
This is an example
To je příklad.
هذا مثال على ذلك.
ಈ ಒಂದು ಉದಾಹರಣೆಯಾಗಿದೆ.
Script used:
CREATE TABLE dbo.Data
( unicodeData NVARCHAR(200)
)
GO
INSERT INTO dbo.Data ( unicodeData)
VALUES
( N'This is an example')
, (N'यह एक उदाहरण है.')
, (N'उदाहरण है.')
, (N'ಈ ಒಂದು ಉದಾಹರಣೆಯಾಗಿದೆ.')
, (N'एक उदाहरण है.')
, (N'هذا مثال على ذلك.')
, (N'To je příklad.');
GO
select * from dbo.unicodeData
order by unicodedata Collate Indic_General_100_CI_AI
Use Order by Column COLLATE syntax. Need to use Indic_General_90_CI_AS collation. Since it seems that
Collation and sort normally used one language only. You want multiple language sorting, you need to add custom values to your data. I added languageSortingPriority column to your table, then used languageSortingPriority column for your sorting.
See sql fiddle here.