c#access数据库 如何修改需要满足多个条件的数据。
如题,初学者,用update[*]set[*]=valuewhere[*]=进行修改的,where那里能不能多加条件,只有一个条件的话修改其他不需要修改的数据?求教。...
如题,初学者,用update [*] set [*]=value where[*]=进行修改的,where那里能不能多加条件,只有一个条件的话修改其他不需要修改的数据?求教。
展开
2个回答
展开全部
string strcn=@"data source=服务器的名称;initial catalog=数据表;integrated security=true";
sqlconnection cn=new sqlconnection(strcn);
string sql="select * from 数据表"; //查询数据表
string sql="insert into 数据表 vales('客户姓名','性别',’年龄','单位名称','联系方式')";//插入数据表
string sql="update 数据表 set xxx=.... where xxx=....";
sqlcommand cmd=new sqlconmmand(sql);//执行sql命令
try
{
cn.open();
。。。。。
}
finally
{
cn.close();
cn.lease();
}
sqlconnection cn=new sqlconnection(strcn);
string sql="select * from 数据表"; //查询数据表
string sql="insert into 数据表 vales('客户姓名','性别',’年龄','单位名称','联系方式')";//插入数据表
string sql="update 数据表 set xxx=.... where xxx=....";
sqlcommand cmd=new sqlconmmand(sql);//执行sql命令
try
{
cn.open();
。。。。。
}
finally
{
cn.close();
cn.lease();
}
追问
复制司马
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询