Sqlcommand cmd=new Sqlcommand();
cmd.commandtext="select username, password from \"user\" where username = 'admin'
and password = 'password123' ";
adp.fill(ds);
Now above query is getting succesffuly executed in mysql and mssql,but my C# code is giving error incorrect sytax "user" Where I am wrong? NOTE:-I want above query to run in mysql and mssql both,and also note that user is reserved keyword in sql