我正在尝试创建连接两个表的汇总结果集。
第一张表(主行和多行)包含以下各列:
trans_id
,
trans_type_id
第二个表(仅一行)包含:
from_trans_type_id
,
to_trans_type_id
我正在尝试联接两个表,以便使from_trans_type_id = trans_type_id
和to_trans_type_id = trans_type_id
并获得相关的trans_id
值
我尝试了自联接,派生联接无效。
最终结果是我正在寻找一个看起来像这样的结果集:
trans_id as from_trans_id, from_trans_type_id, trans_id as to_trans_id, to_trans_type_id
数据是:
答案 0 :(得分:0)
您可以将join与firsttable的多个实例一起使用
string fullCommand = "rundll32 C:/WINDOWS/system32/shimgvw.dll,ImageView_PrintTo " + filePath + printerName
System.Diagnostics.Process process = new System.Diagnostics.Process();
process.StartInfo.FileName = "cmd.exe";
process.StartInfo.CreateNoWindow = false;
process.StartInfo.RedirectStandardInput = true;
process.StartInfo.RedirectStandardOutput = true;
process.StartInfo.UseShellExecute = false;
process.StartInfo.Arguments = "/c " + fullCommand;
process.Start();