Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私のデータベースには、ユーザー名、パスワード、住所、都市などがあります。このコードを使用すると、データベースから行全体が削除されます。
SqlCommand cmd = new SqlCommand("Delete from customer_registration where username='"+ Session["username"] +"'",del);
データを含む私のデータベース: Db
特定の列データを削除する方法、またはNULLに戻す方法は? Db
あなたはそのようにあなたの記録を更新することができます
update your_table set some_column = NULL where id = 123