sql怎么用循环插入数据??
我有一张表hrid,emp_code,emp_name。。。1xx2xx3xx4xx5xx。。。。。。想得得到的结果id,emp_code,emp_name。。。1001...
我有一张表 hr
id,emp_code,emp_name。。。
1 xx
2 xx
3 xx
4 xx
5 xx
。。。。。。
想得得到的结果
id,emp_code,emp_name。。。
1 001 xx
2 002 xx
3 003 xx
4 004 xx
5 005 xx
。。。。。。
id有很多。。求高手解决一下
只在sql2000操作 展开
id,emp_code,emp_name。。。
1 xx
2 xx
3 xx
4 xx
5 xx
。。。。。。
想得得到的结果
id,emp_code,emp_name。。。
1 001 xx
2 002 xx
3 003 xx
4 004 xx
5 005 xx
。。。。。。
id有很多。。求高手解决一下
只在sql2000操作 展开
3个回答
展开全部
using (SqlConnection conn = new SqlConnection())
{
SqlCommand comm= new SqlCommand();
conn.ConnectionString ="数据库连接串";
comm.CommandType =CommandType .Text ;
conn.Open();
foreach (DataRow item in hr)
{
string sql= 取得字段并拼接为sql语句;
comm.CommandText =sql;
command.ExecuteNoQuery();
}
conn.Close ();
}
{
SqlCommand comm= new SqlCommand();
conn.ConnectionString ="数据库连接串";
comm.CommandType =CommandType .Text ;
conn.Open();
foreach (DataRow item in hr)
{
string sql= 取得字段并拼接为sql语句;
comm.CommandText =sql;
command.ExecuteNoQuery();
}
conn.Close ();
}
展开全部
用存储过程啊,一次可以实现多条并发处理命令
追问
能帮我写一个吗?
wo buhui a
追答
你是什么数据库,我用过ORACLE的 sql several的存储我没写过,但是看一下还是可以写出来的
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询