<rt id="bn8ez"></rt>
<label id="bn8ez"></label>

  • <span id="bn8ez"></span>

    <label id="bn8ez"><meter id="bn8ez"></meter></label>

    posts - 66,comments - 41,trackbacks - 0
    Computerworld在對多位IT高管進(jìn)行調(diào)查之后,得出了2012 最需要IT技能,不過由于調(diào)查范圍不夠大,可能會(huì)出現(xiàn)偏差,僅供參考。

    1)編程及應(yīng)用開發(fā):需求從2010年的44%上升到2012年的61%。
    2)項(xiàng)目管理:不僅僅管理人才監(jiān)管項(xiàng)目,還需要洞察用戶需求并轉(zhuǎn)述給其他IT員工,包括需求日益增加的商業(yè)分析師。
    3)服務(wù)臺(tái)支持/技術(shù)支持:隨著移動(dòng)操作系統(tǒng)的發(fā)展,需求隨之增加
    4) 網(wǎng)絡(luò)設(shè)計(jì):這類需求部分歸結(jié)于虛擬化及云計(jì)算的發(fā)展,相關(guān)人員最好具有虛擬系統(tǒng)及思杰系統(tǒng)經(jīng)驗(yàn)的人。
    5) 商務(wù)智能(Business Intelligence):這類需求大部分歸因于企業(yè)日益將重心從節(jié)省成本轉(zhuǎn)向技術(shù)投資。
    6) 數(shù)據(jù)中心:虛擬化及云技術(shù)也排在其后
    7) Web 2.0:圍繞社交媒體的技術(shù)需求將會(huì)增加,Net,AJAX及PHP作關(guān)鍵后端技術(shù),HTML,XML,CSS,F(xiàn)lash及Javascript作前端支持。
    8) 安全:2010年需求為32%,現(xiàn)在有所下降,但由于日趨嚴(yán)重的安全問題,許多人又將此提到一個(gè)新的高度
    9 )電信:對IP電話技術(shù)人員的需求也相當(dāng)大,尤其是對Cisco IPCC電話中心系統(tǒng)熟悉的人。
    posted @ 2012-01-10 20:45 kylixlu 閱讀(205) | 評論 (0)編輯 收藏

    The Oracle TO_CHAR(datetime, fmt) function converts datetime values to a string in the format specified by the fmt option.

    MySQL has the DATE_FORMAT function that allows datetime values converting to a string in the specified format.

    SQLWays converts the Oracle TO_CHAR function to the MySQL DATE_FORMAT function and converts elements of format string from Oracle to corresponding specifier in MySQL as specified in the following table.

    TABLE 56. Conversion of Oracle TO_CHAR(datetime) with format string to MySQL

    Mapping of datetime format specifiers between MySQL and Oracle
    MySQL
    Oracle (independently from register)
    Description
    %a
    DY
    Abbreviated weekday name (Sun..Sat)
    %b
    MON
    Abbreviated month name (Jan..Dec)
    %D
    -
    Day of the month with English suffix (0th, 1st, 2nd, 3rd, etc.)
    %d
    %e
    DD
     
    Day of the month, numeric ((00..31) and (0..31))
    %j
    DDD
    Day of year (001..366)
    %m
    %c
    MM
    Month, numeric ((00..12) and (0..12))
    %M
    MONTH
    Month name (January..December)
    %f
    -
    Microseconds (000000..999999)
    %i
    MI
    Minutes, numeric (00..59)
    %h
    %I
    %l
    HH
    HH12
    Hour ((01..12) and (1..12))
    %H
    %k
    HH24
    Hour ((00..23) and (0..23))
    %p
    AM
    PM
    AM or PM
    %r
    -
    Time, 12-hour (hh:mm:ss followed by AM or PM)
    %S
    %s
    SS
    Seconds ((00..59) and (0..59))
    %T
    -
    Time, 24-hour (hh:mm:ss)
    %u
    WW
    IW
    Week (00..53), where Monday is the first day of week
    %U
    -
    Week (00..53), where Sunday is the first day of week
    %V
    -
    Week (01..53), where Sunday is the first day of week, used with %X
    %v
    WW
    IW
    Week (01..53), where Monday is the first day of week, used with %x
    %W
    DAY
    Weekday name (Sunday..Saturday)
    %w
    -
    Day of the week (0=Sunday .. 6=Saturday)
    %X
    -
    Year for the week, where Sunday is the first day of the week, numeric 4 digits; used with %V
    %x
    -
    Year for the week, where Monday is the first day of the week, numeric 4 digits; used with %v
    %Y
    YYYY
    SYYYY
    IYYY
    Year, numeric, 4 digits
    %y
    YY
    IYY
    Year, numeric, 2 digits
    -
    J
    Julian day; the number of days since January 1, 4712 BC.
    -
    Q
    Quarter of year (1, 2, 3, 4; JAN-MAR = 1).
    -
    RR
    Given a year with 2 digits:
    · If the year is <50 and the last 2 digits of the current year are >=50, then the first 2 digits of the returned year are 1 greater than the first 2 digits of the current year.
    · If the year is >=50 and the last 2 digits of the current year are <50, then the first 2 digits of the returned year are 1 less than the first 2 digits of the current year.
    -
    RRRR
    Round year. Accepts either 4-digit or 2-digit input. If 2-digit, provides the same return as RR. If you don't want this functionality, then simply enter the 4-digit year.
    -
    W
    Week of month (1-5) where week 1 starts on the first day of the month and ends on the seventh.
    -
    SSSSS
    Seconds past midnight (0 - 86399).
    -
    X
    Local radix character.
    -
    Y,YYY
    Year with comma in the position.
    -
    YEAR
    SYEAR
    Year, spelled out; "S" prefixes BC dates with "-".
    -
    YYY
    3 digits of year.
    -
    Y
    1 digit of year.
    -
    IY
    2 digits of ISO year.
    -
    I
    1 digit of ISO year.
    -
    AD
    A.D.
    AD indicator with or without periods.
    -
    BC
    B.C.
    BC indicator with or without periods.
    -
    CC
    SCC
    One greater than the first two digits of a four-digit year; "S" prefixes BC dates with "-".
    For example, '20' from '1900'.
    -
    D
    Day of week (1 - 7).
    -
    A.M.
    P.M.
    Meridian indicator with periods.
    -
    TZH
    Time zone hour.
    -
    TZM
    Time zone minute.
    -
    TZR
    Time zone region information.
    -
    RM
     
    TABLE 57. Example of Conversion
    Oracle
    MySQL
    create procedure sp_to_char_date_format
    as
    begin
    -- GET ACTUAL TIME AND DATE
    select to_char(sysdate,'DD-MON-YYYY:HH24:MI')
    from dual;
    end;
    create procedure sp_to_char_date_format()
    begin
    -- GET ACTUAL TIME AND DATE
    select DATE_FORMAT(CURRENT_TIMESTAMP, '%e-%M-
    %Y:%H:%i') from dual;
    end;

    posted @ 2010-04-22 17:00 kylixlu 閱讀(1203) | 評論 (0)編輯 收藏
    主站蜘蛛池模板: 一个人看的www在线观看免费| 亚洲一区日韩高清中文字幕亚洲| 国产精品免费视频播放器| 亚洲中文无韩国r级电影 | 色网站在线免费观看| **aaaaa毛片免费| 亚洲中文字幕无码一区二区三区| 亚洲色中文字幕在线播放| 国产性生大片免费观看性| 国产一区二区三区免费视频| 亚洲精品福利你懂| 亚洲黄色免费观看| 国产亚洲精彩视频| 日韩高清免费在线观看| 亚洲中文字幕日本无线码| 亚洲国产av无码精品| yy一级毛片免费视频| 又黄又爽的视频免费看| 亚洲国产成人无码AV在线| 日韩免费一区二区三区在线播放| 亚洲成在人天堂在线| 国产精品成人69XXX免费视频| 亚洲日韩涩涩成人午夜私人影院| 热re99久久6国产精品免费| 久久亚洲精品无码| 国产精品色午夜免费视频| 久久免费观看国产精品| 久久亚洲精品无码aⅴ大香| 99re在线这里只有精品免费| 国产91成人精品亚洲精品| 亚洲精品国产成人| 国内外成人免费视频| 亚洲爆乳精品无码一区二区| 亚洲日本一区二区| 免费精品国产日韩热久久| a视频在线观看免费| 亚洲国产高清人在线| 亚洲一区无码精品色| 日本一道一区二区免费看| 免费三级毛片电影片| 日本免费污片中国特一级|