-1

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

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

这是相同的查询,但表名不同。

有没有可能用一个查询编写两个查询的方法?

谢谢。

4

2 回答 2

2

尝试使用这个:

string query = string.Format("Select * from {0} where UserId={1}", tableName, userID);
于 2012-08-06T08:45:36.873 回答
0

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

var input = "table 1";
var query = string.Format("Select * from {0} where UserId= 1 ",input);
comm.CommandText = query;
于 2012-08-06T08:43:07.463 回答