很多時候一對多的關係中 只需要顯示第一行
最近就遇到這樣的情況
客戶訂單 客戶訂單行 有可能是分批出貨。欠交數量是個總數
客戶訂單 行 數量 出貨數量 出貨日期 欠交數量
a 001 500 100 2010=05-01 100
a 001 500 200 2010=05-02 100
a 001 500 100 2010=05-03 100
a 001 500 100 2010=05-01 100
a 001 200 2010=05-02
a 001 100 2010=05-03
如果在水晶報表中很容易實現,但如果在grid中呢
其實很簡單
protected void gridview1_rowdatabound(object sender, gridviewroweventargs e)
");// 鼠 停留 更改背景色
e.row.attributes.add("onmouseout", "if(this!=prevselitem)");// 鼠 移 原背景色
}if (e.row.rowtype == datacontrolrowtype.datarow)
string strprice = e.row.cells[13].text;//取出來的單元格的文字帶有rmb字串,如:rmb50.47
double price = double.parse(strprice);
if (price > 0)
else
}lastdoc = currdoc;
lastline = currline;
}
gridview行顏色漸變
滑鼠滑過顏色變化 gridview 1 protected void gridview1 rowdatabound object sender,gridviewroweventargs e 2 8 datagird 1 protected void dgvalueinfo itemdatabound...
SQL 6 抑制資料重複
如果要檢索公司有哪些垂直部門,那麼可以執行下面的sql語句 select fdepartment from t employee 執行完畢我們就能看到下面的執行結果 fdepartment development development development humanresource human...
SQL基礎 抑制重複資料
抑制重複資料,使用 distinct 表資料如下 舉例1 查詢表中員工所有的部門資訊 select subdepartment from t employee 查詢的結果中部門重複了,為了消除這種重複,使用 selectdistinctsubdepartment from t employee 注意...