发布网友 发布时间:2024-09-30 19:06
共2个回答
热心网友 时间:2024-09-30 19:59
你去读去系统表: USE [MDSystemDataBaseTwo] --我自己的数据库,改些成你的数据库名字 select * from syscolumns where object_name(id) = '表名字'--把表名字替换成你的表名字 这个语句返回的是 '表名字' 中的所有字段,有了所有字段,判断存在什么的 很简单了 希望对你有帮助热心网友 时间:2024-09-30 19:59
SqlConnection cnn = conn_sql(); SqlCommand cmm = new SqlCommand("select count(*) from sujubiao where USERNAME='" + TB_user.Text + "'", cnn); if(Convert.ToInt32(cmm.ExecuteScalar()) != 0) { //存在,提示用户 ClientScript.RegisterStartupScript(GetType(), "info", "alert('用户已存在!')", true); }