I have one table in sql db where I store nvarchar values
    CREATE TABLE [dbo].[Buns]
    (
        [ID] INT NOT NULL PRIMARY KEY IDENTITY,
        
        [ARABIC] NVARCHAR(MAX) NULL, 
        [ENGLISH] NVARCHAR(MAX) NULL, 
        
    )
I can query the English values only
Appreciate your support with clear steps as am still a beginner
 
     
    