本文介绍了使用where查询insert的syjntext的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

SqlCommand cmd2 = new SqlCommand("insert into logininfo(logouttime)values (''" + DateTime.Now + "'') where sessonid="+ sessonid , cnn);







此查询会给我错误。什么是问题?




this query will give me error.what is problem ?

推荐答案

SqlCommand cmd2 = new SqlCommand("insert into logininfo(logouttime,sessonid) values ('" + DateTime.Now + "','"+ sessonid +"')" , cnn);

SqlCommand cmd2 = new SqlCommand("insert into logininfo(logouttime) values ('" + DateTime.Now + "')" , cnn);


这篇关于使用where查询insert的syjntext的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-21 05:43