Мне пришлось обновить таблицу, я пробовал два запроса, но он показывает синтаксическую ошибку, может кто-нибудь помочь мне, пожалуйста, я знаю, что это базовый, но я начинающий
String query = "Update masterusertable set username='" + txtName.Text + "',and set password='" + txtpassword.Text + "',and set phoneno='" + txtphoneno.Text + "',and set adress='" + rtxtAdress.Text + "' where userid ='" + txtuserid.Text + "'";
String query = "Update masterusertable set username='" + txtName.Text + "', password='" + txtpassword.Text + "', phoneno='" + txtphoneno.Text + "', adress='" + rtxtAdress.Text + "' where userid ='" + txtuserid.Text + "'";
любая идея У меня было много больших таблиц, которые нужно обновить, хорошо ли обновлять, используя любые другие идеи.