我的数据库中有不同的表。我想编写一个查询来处理所有表,例如:
comm.CommandText = "Select * from table1 where UserId='" + 1 + "'";
comm.CommandText = "Select * from table2 where UserId='" + 1 + "'";
这是相同的查询,但表名不同。
有没有可能用一个查询编写两个查询的方法?
谢谢。
尝试使用这个:
string query = string.Format("Select * from {0} where UserId={1}", tableName, userID);
您可以尝试使用此代码 - string.Format
var input = "table 1";
var query = string.Format("Select * from {0} where UserId= 1 ",input);
comm.CommandText = query;