Frage : Sql-Frage

Anstelle von, wo li.trade_date = ' 07-JULY-10' ich letzte Monatsdaten sehen möchten. Mich bitte informieren, wie man that.something wie zwischen „07-June-10 zu „07-july-10“ mit dem Handeln der gleichen Berechnung überprüft, die wir für einzigen Tag wie li.trade_date = ' 07-JULY-10“ tun.

select sess.EXCHANGE,
sess.REGION,
„(„||Ordnung (sd.DATA_CENTER)||")“,
maximal (li.latency_micro_sec) ALS max_latency,
Minute (li.latency_micro_sec) ALS min_latency,
rund (avg (li.latency_micro_sec), 2) ALS avg_latency,
rund (Mittelpunkt (li.latency_micro_sec), 2) ALS med_latency,
rund (stddev (li.latency_micro_sec), 2) ALS stddev_latency
from latency_info Li,
threshold_lookup Zeitlimit,
xl_sessions sess,
server_master Inspektion,
server_details Sd, Inhaber o
where li.trade_date = ' 07-JULY-10'< Br/>and tl.instance = li.INSTANCE
and sess.INSTANCE = li.INSTANCE
and o.OWNER_ID = sm.OWNER_ID
and sm.OWNER_ID = sd.OWNER_ID (+)
and sm.SERVER_NAME = sd.SERVER_NAME (+)
and sm.SERVER_NAME = li.HOSTNAME
and sess.INSTANCE nicht in („BRK%")
and li.LATENCY_MICRO_SEC < 100000
and o.owner_name nicht in („Chan, Cindy ")
and o.OWNER_TYPE = 'T'< Br/>group durch li.trade_date, sess.EXCHANGE, sess.REGION, trim (sd.DATA_CENTER)

Antwort : Sql-Frage

Für die Erklärung danke.  Ich erhalte Sie jetzt.
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
sess.EXCHANGE vorwählen,
       sess.REGION,
       „(„||Ordnung (sd.DATA_CENTER)||")“,
       maximal (li.latency_micro_sec) ALS max_latency,
       Minute (li.latency_micro_sec) ALS min_latency,
       rund (avg (li.latency_micro_sec), 2) ALS avg_latency,
       rund (Mittelpunkt (li.latency_micro_sec), 2) ALS med_latency,
       rund (stddev (li.latency_micro_sec), 2) ALS stddev_latency
vom latency_info Li,
     threshold_lookup Zeitlimit,
     xl_sessions sess,
     server_master Inspektion,
     server_details Sd, Inhaber O
wo li.trade_date ZWISCHEN add_months (TRUNC (SYSDATE), - 1) UND SYSDATE
und   tl.instance = li.INSTANCE
und   sess.INSTANCE = li.INSTANCE
und   o.OWNER_ID = sm.OWNER_ID
und sm.OWNER_ID = sd.OWNER_ID (+)
und sm.SERVER_NAME = sd.SERVER_NAME (+)
und sm.SERVER_NAME = li.HOSTNAME
und sess.INSTANCE nicht innen („BRK%")
und li.LATENCY_MICRO_SEC  < 100000="" and="" o="">
           
Weitere Lösungen  
 
programming4us programming4us