id_transd、id_trans、id_cust、inputtime を含む transaction_detail という名前のテーブルがあります。
id_transd | id_trans | id_cust | inputtime |
1 | 1 | 1 | 2013-04-15 16:55:58 |
2 | 1 | 1 | 2013-05-15 16:55:58 |
3 | 1 | 1 | 2013-06-15 16:55:58 |
4 | 2 | 2 | 2013-06-15 16:55:58 |
...
同じid_custとid_transを持つinputtimeの量を取得したい。
例: 管理者が 1 人の貸衣装でジョブが完了した時間をカウントしたい場合、管理者は顧客の名前をクリックする必要があり、システムが日付を計算します。
|No.| Name | Process | Time |
|1. | D-net | by sales | 2013-04-15 16:55:58 |
| | | by sadmin | 2013-05-15 16:55:58 |
| | | by technic | 2013-06-15 16:55:58 |
私はこのコードを試しました
SELECT t.* datediff(DAY, t.inputtime, nextdate) AS Days_Between
FROM
(SELECT t.*,
(SELECT min(inputtime)
FROM transaksi_detail t2
WHERE t.id_cust = t2.id_cust
AND t.id_trans = t2.id_trans
AND t.inputtime < t2.inputtime) AS nextdate
FROM transaction_detail t)t
しかし、うまくいきません、それは言います:
Warning: mysql_fetch_array() expects parameter 1 to be resource, boolean given in F:\htdocs\indosat2\hitung_tanggal2.php on line 20