asp中用sql语句联合查询多个表,如果两个表中有相同字段,怎么查询显示出来。
发布网友
发布时间:2022-04-10 08:40
我来回答
共2个回答
热心网友
时间:2022-04-10 10:10
string pic="";
string sql="select * from xc1 where pic in (select pic from xc2 )";
OleDbDataReader reader = db.GetList(sql);
while (reader.Read())
{
pic +=reader["pic"].tostring()+"|";
}
read.close();
热心网友
时间:2022-04-10 11:28
直接在数据库里建个视图吧~~~