我在数据库中有不同的表 - 我想通过用户点击动态选择表

时间:2012-08-06 08:39:17

标签: c# asp.net

我的数据库中有不同的表。我想编写一个查询来处理所有表,如:

comm.CommandText = "Select * from table1 where UserId='" + 1 + "'";
comm.CommandText = "Select * from table2 where UserId='" + 1 + "'";

它是相同的查询但不同的表名。

有没有办法用一个查询写两个查询?

感谢。

2 个答案:

答案 0 :(得分:2)

尝试使用:

string query = string.Format("Select * from {0} where UserId={1}", tableName, userID);

答案 1 :(得分:0)

您可以尝试使用此代码 - string.Format

var input = "table 1";
var query = string.Format("Select * from {0} where UserId= 1 ",input);
comm.CommandText = query;