 |
|
[.NET]
ช่วยค่อยครับ count ผมใช้ access เป็นฐานข้อมูล ผลที่ได้คือ ลำดับที่ของข้อมูลเป็นลำดับที่ของข้อมูลทั้งหมด |
|
 |
|
|
 |
 |
|
SELECT
(SELECT COUNT(s.computer_name) + 1
FROM pc_hd s
WHERE
s.computer_name <= t.computer_name) AS RunNumber,
t.computer_name,
t.user,
dt.section_name
FROM pc_hd t, section_dt dt
WHERE
t.section_id = dt.section_id
AND
dt.section_name = sec_name
ORDER BY
t.computer_name
ลองดูครับ
|
 |
 |
 |
 |
Date :
2010-02-12 09:26:32 |
By :
numenoy |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ไม่ได้อ่ะครับ ยังเป็นลำดับที่ไม่ถูกต้องอยู่
อย่างเช่นมีข้อมูลดังนี้
PC_HD
computer_name user section_id
ac-01 user1 1
ac-02 user2 1
ac-03 user3 1
hr-01 user4 2
hr-02 user5 2
sction_dt
section_id section_name
1 ac
2 hr
ถ้า select มาหมดจะแสดงอย่างนี้
no computer_name User section_name
1 ac-01 user1 ac
2 ac-02 user2 ac
3 .... ... ...
..
5 hr-02 user3 hr
แต่ถ้าเลือก เฉพาะ hr ต้องได้
no computer_name User section_name
1 hr-01 user4 hr
2 hr-02 user5 hr
แต่นอนนี้ได้
no computer_name User section_name
4 hr-01 user4 hr
5 hr-02 user5 hr
อยากรู้ว่าต้องแก้ไขตรงไหนของ query อ่ะ ช่วยด้วยครับ
|
 |
 |
 |
 |
Date :
2010-02-12 09:49:20 |
By :
zicxnals |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
SELECT
t.computer_name,
t.[user],
dt.section_name
INTO #x
FROM PC_HD t, sction_dt dt
WHERE
dt.section_name = 'hr'
AND
t.computer_name LIKE 'hr%'
ORDER BY
t.computer_name
GO
SELECT
(SELECT COUNT(computer_name)
FROM #x AS x
WHERE x.computer_name <= y.computer_name) AS Sequence,
computer_name,
[user],
section_name
FROM #x AS y
GO
drop table #x
GO
ยาวสักหน่อย แต่ลอง run ใน SQL STUDIO ผ่านครับ
|
 |
 |
 |
 |
Date :
2010-02-12 11:29:19 |
By :
numenoy |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
โอเคขอบคุณมากครับ 
|
 |
 |
 |
 |
Date :
2010-02-12 11:48:28 |
By :
zicxnals |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
แล้วถ้าเกิดว่า ว่า มีตารางอยู่ 3 ตารางดังนี้
pc_hd
computer_name user section_id
ac-01 user1 1
ac-02 user2 1
hr-01 user3 2
section_dt
section_id section_name
1 ac
2 hr
repair_dt
computer_name doc_no
ac-01 12345
ac-01 12346
ac-02 1289
hr-01 12347
โดยใช้ query นี้แล้ว
SELECT DISTINCT (select count(s.computer_name) from pc_hd s where " +
"s.computer_name <= t.computer_name), t.computer_name, t.user, " +
"dt.section_name FROM Section_DT dt INNER JOIN (PC_HD t INNER JOIN " +
"Repair_DT rt ON t.computer_name = rt.computer_name) ON " +
"dt.section_id = t.section_id Where t.computer_name in " +
"(SELECT rtt.computer_name FROM Repair_DT rtt Where rtt.Doc_no" +
" like '" + doc_num + "%') Order By t.computer_name";
แล้วลำดับมันไม่เรียงเป็น 1 2 3 อ่ะครับ
ช่วยหน่อยนะครับ ว่าควรปรับแก้ยังไงดีอ่ะครับ
|
 |
 |
 |
 |
Date :
2010-02-12 12:51:26 |
By :
zicxnals |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
SELECT DISTINCT
t.computer_name, t.[user], dt.section_name
INTO #x
FROM
section_dt dt
INNER JOIN
(PC_HD t
INNER JOIN
repair_dt rt
ON
t.computer_name = rt.computer_name)
ON
dt.section_id = t.section_id
WHERE
t.computer_name
IN
(SELECT rtt.computer_name FROM repair_dt rtt WHERE rtt.doc_no LIKE '12%') ORDER BY t.computer_name
GO
SELECT
(SELECT COUNT(computer_name)
FROM #x AS x
WHERE x.computer_name <= y.computer_name) AS Sequence,
computer_name,
[user],
section_name
FROM #x AS y
GO
DROP TABLE #x
GO
ยาวสักหน่อย แต่ลอง run ใน SQL STUDIO ผ่านครับ
|
 |
 |
 |
 |
Date :
2010-02-12 15:29:09 |
By :
numenoy |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
 |
|
|
 |
 |
|
ขอบคุณมากครับได้แล้วครับ
|
 |
 |
 |
 |
Date :
2010-02-12 15:44:29 |
By :
zicxnals |
|
 |
 |
 |
 |
|
|
 |
 |
|
 |
 |
|
|