首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > SQL Server >

SQL 语句动态写法

2012-03-29 
SQL 语句动态写法?在线等SQL 语句能这样写吗我要查询的是动态的可变的C# codeSqlConnection con new Sql

SQL 语句动态写法 ?在线等
SQL 语句能这样写吗 我要查询的是动态的 可变的

C# code
SqlConnection con = new SqlConnection("server=localhost;database=7daydian;uid=sa;pwd=1234");        string dia = "dianliang";        string sql = "select '"+dia+"' from tongji order by shijian";        SqlCommand com = new SqlCommand(sql, con);


我执行了下 没有结果

应该怎样写啊  
在线等 急!

[解决办法]
string dia = "dianliang";

string sql = "select ["+dia+"] from tongji order by shijian";

[解决办法]
where riqi>='' and
注意and前后空格

热点排行