Is there a way in SQL Server , so that i can specify the rtl direction for a column ?Currently i have a query like this :SELECT IDSource, IDAviculture, NumberOfReserve, TotalMoney , Name + '(' + Description + ')' AS Descrition, DateFROM dbo.tblReserveWHERE (Sell = 1)
The data are in Farsi and thus right to left.The problem is unless it is not rtl, it doesn't show the information in correct form.For example the following text needs to be right to left in order for ???? to get inside parentheses> ??? (????)
IDSource IDAviculture NumberOfReserve TotalMoney Name + '(' + Description + ')' AS Descrition Date12 5 1500 3000 ??? (???????)13 4 700 2500 ????(??? )
I Expected to be likeIDSource IDAviculture NumberOfReserve TotalMoney Name + '(' + Description + ')' AS Descrition Date12 5 1500 3000 ??? (???????) ?13 4 700 2500 ???? (??? ) ?
Please note that the editor here doesn't support `RTL` either , so basically it wont show the text correctly , so i had to put an extra letter (?) so that it shows it correctly .Basically what i wrote above can be translated into English as:Name + '(' + Description + ')'Ali (Description)Mina (Test)
in English because of being LTR it is fine but when it comes to the rtl content it gets ugly.How can i get this right?