how i add to bit update c# sql server

Clash Royale CLAN TAG#URR8PPP
how i add to bit update c# sql server
my problem is update code
// this my update button code but i cant wrote the update the tic column
in this picture id , firmaismi ,firmayetkilisi,görüsmenedeni,görüsmetarihi comes sql server database
i add to yöneticiform in onay and acıklama column
i neeed to update query code thank you
private void btnGuncelle_Click(object sender, EventArgs e)
SqlConnection sqlcn = new SqlConnection();
sqlcn.ConnectionString = "Data Source=Samsung-PC;Integrated Security=true;Initial Catalog=OfficeDB";
SqlCommand cmd = new SqlCommand("Update SekreterRandevuTable ", sqlcn);
sqlcn.Open();
cmd.ExecuteNonQuery();
sqlcn.Close();
MessageBox.Show("Randevu gg");
By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.