SQL語句技巧記錄(Oracle MySQL)

2021-05-22 11:06:39 字數 1073 閱讀 4883

oracle技巧:

1) 獲取啟動和執行時間

select to_char (startup_time, 'yyyy-mm-dd hh24:mi:ss') starttime,

trunc (sysdate - (startup_time)) as days,

trunc (  24 * ((sysdate - startup_time) - trunc (sysdate - startup_time)) )as hours,

mod (trunc (  1440 * (  (sysdate - startup_time) - trunc (sysdate - startup_time) ) ), 60) as minutes,

mod (trunc (  86400 * (  (sysdate - startup_time) - trunc (sysdate - startup_time) ) ), 60) as seconds

from v$instance;

2)列出當前連線情況

select * from v$session where username is not null order by logon_time, sid

mysql對應技巧:

1) 獲取啟動和執行時間

select sysdate() - interval variable_value second as starttime,

(variable_value div (3600*24)) as days,(variable_value mod (3600*24) div 3600) as hours,

(variable_value mod (3600) div 60) as minutes, (variable_value mod 60) as seconds

from information_schema.global_status where variable_name like 'uptime'

2)列出當前連線情況

select id,user,host,db,command,time,state from information_schema.processlist

wps技巧 excel記錄轉sql語句

總會有些情況需要將excel文件的資料錄入資料庫中,當然我們也不想一條條地手敲進去,畢竟這樣的效率實在是太慢了。這裡推薦使用乙個簡單的將 excel 資料轉sql 語句的方法 excel資料表 選中d1區,在 fx的框中輸入 concatenate insert into user systemid...

SQL語句記錄

1,group by 分組查詢語句eg select t.send user,count as sms count from sms history t group by t.send user order by sms count desc2,ibatis對映中oracle db隨機抽取10條記錄...

編寫sql語句技巧

一 今天遇到乙個帥選資料的問題,sqlserver儲存過程中,加了乙個新的篩選資料的條件,不打亂原來的取資料的模式下把新的功能新增進去,用一段複合型的exists語句就可以解決問題 and 原先的sql 語句 過濾自助機不顯示的科室 專家資料 add by aorigel 20101020 andn...