曙海教育集團
全國報名免費熱線:4008699035 微信:shuhaipeixun
或15921673576(微信同號) QQ:1299983702
首頁 課程表 在線聊 報名 講師 品牌 QQ聊 活動 就業(yè)
   班級規(guī)模及環(huán)境--熱線:4008699035 手機:15921673576( 微信同號)
       每期人數(shù)限3到5人。
   上課時間和地點
上課地點:【上海】:同濟大學(滬西)/新城金郡商務樓(11號線白銀路站) 【深圳分部】:電影大廈(地鐵一號線大劇院站)/深圳大學成教院 【北京分部】:北京中山學院/福鑫大樓 【南京分部】:金港大廈(和燕路) 【武漢分部】:佳源大廈(高新二路) 【成都分部】:領(lǐng)館區(qū)1號(中和大道) 【沈陽分部】:沈陽理工大學/六宅臻品 【鄭州分部】:鄭州大學/錦華大廈 【石家莊分部】:河北科技大學/瑞景大廈 【廣州分部】:廣糧大廈 【西安分部】:協(xié)同大廈
最近開課時間(周末班/連續(xù)班/晚班):2020年3月16日
   實驗設備
     ☆資深工程師授課
        
        ☆注重質(zhì)量 ☆邊講邊練

        ☆合格學員免費推薦工作
        ★實驗設備請點擊這兒查看★
   質(zhì)量保障

        1、培訓過程中,如有部分內(nèi)容理解不透或消化不好,可免費在以后培訓班中重聽;
        2、培訓結(jié)束后,授課老師留給學員聯(lián)系方式,保障培訓效果,免費提供課后技術(shù)支持。
        3、培訓合格學員可享受免費推薦就業(yè)機會。

課程大綱
 
  • Oracle Database: Introduction to SQL (DB-INTRO-SQL
    Oracle Database: Introduction to SQL (DB-INTRO-SQL)培訓
    培訓大綱:
    1. Introduction to Oracle Database
    Features of Oracle Database 11g
    Basic design, theoretical, and physical aspects of a relational database
    Categorize the different types of SQL statements
    Data set used by the course
    Log on to the database using SQL Developer environment
    Save queries to files and use script files in SQL Developer
    2. Retrieve Data using the SQL SELECT Statement
    Capabilities of SQL SELECT statements
    Generate a report of data from the output of a basic SELECT statement
    Select all columns
    Select specific columns
    Use column heading defaults
    Use arithmetic operators
    Operator precedence
    DESCRIBE command to display the table structure
    3. Learn to Restrict and Sort Data
    Write queries that contain a WHERE clause to limit the output retrieved
    Comparison operators and logical operators that are used in a WHERE clause
    Rules of precedence for comparison and logical operators
    Use character string literals in the WHERE clause
    Write queries that contain an ORDER BY clause to sort the output of a SELECT statement
    Sort output in descending and ascending order
    4. Usage of Single-Row Functions to Customize Output
    Differences between single row and multiple row functions
    Manipulate strings with character function in the SELECT and WHERE clauses
    Manipulate numbers with the ROUND, TRUNC, and MOD functions
    Perform arithmetic with date data
    Manipulate dates with the DATE functions
    5. Invoke Conversion Functions and Conditional Expressions
    Implicit and explicit data type conversion
    Use the TO_CHAR, TO_NUMBER, and TO_DATE conversion functions
    Nest multiple functions
    Apply the NVL, NULLIF, and COALESCE functions to data
    Use conditional IF THEN ELSE logic in a SELECT statement
    6. Aggregate Data Using the Group Functions
    Use the aggregation functions to produce meaningful reports
    Divide the retrieved data in groups by using the GROUP BY clause
    Exclude groups of data by using the HAVING clause
    7. Display Data from Multiple Tables Using Joins
    Write SELECT statements to access data from more than one table
    View data that generally does not meet a join condition by using outer joins
    Join a table to itself by using a self join
    8. Use Subqueries to Solve Queries
    Types of problems that subqueries can solve
    Subqueries
    Types of subqueries
    Write single-row and multiple-row subqueries
    9. The SET Operators
    SET operators
    Use a SET operator to combine multiple queries into a single query
    Control the order of rows returned
    10. Data Manipulation Statements
    DML statements
    Insert rows into a table
    Change rows in a table by the UPDATE statement
    Delete rows from a table with the DELETE statement
    Save and discard changes with the COMMIT and ROLLBACK statements
    Read consistency
    11. Use of DDL Statements to Create and Manage Tables
    Categorize the main database objects
    Table structure
    Data types available for columns
    Create a simple table
    How constraints can be created at table creation
    How schema objects work
    12. Other Schema Objects
    Create a simple and complex view
    Retrieve data from views
    Create, maintain, and use sequences
    Create and maintain indexes
    Create private and public synonyms
    13. Control User Access
    System privileges vs. object privileges
    Create users
    Grant system privileges
    Create and grant privileges to a role
    Change your password
    Grant object privileges
    How to pass on privileges?
    Revoke object privileges
    14. Management of Schema Objects
    Add, modify, and drop a column
    Add, drop, and defer a constraint
    How to enable and disable a constraint?
    Create and remove indexes
    Create a Function-Based index
    Perform Flashback operations
    Create an External Table by using ORACLE_LOADER and by using ORACLE_DATAPUMP
    Query external tables
    15. Manage Objects with Data Dictionary Views
    Data dictionary
    Use the dictionary views
    USER_OBJECTS and ALL_OBJECTS Views
    Table and Column Information
    Query the dictionary views for constraint information
    Query the dictionary views for view, sequence, index, and synonym information
    Add a comment to a table
    Query the dictionary views for comment information
    16. Manipulate Large Data Sets
    Use subqueries to manipulate data
    Retrieve data using a subquery as source
    Insert using a subquery as a target
    Usage of the WITH CHECK OPTION keyword on DML statements
    Types of multitable INSERT statements
    Use multitable INSERT statements
    Merge rows in a table
    Track changes in data over a period of time
    17. Data Management in Different Time Zones
    Time zones
    CURRENT_DATE, CURRENT_TIMESTAMP, and LOCALTIMESTAMP
    Compare date and time in a session''s time zone
    DBTIMEZONE and SESSIONTIMEZONE
    Difference between DATE and TIMESTAMP
    INTERVAL data types
    Use EXTRACT, TZ_OFFSET, and FROM_TZ
    Invoke TO_TIMESTAMP,TO_YMINTERVAL and TO_DSINTERVAL
    18. Retrieve Data Using Subqueries
    Multiple-column subqueries
    Pairwise and nonpairwise comparison
    Scalar subquery expressions
    Solve problems with Correlated subqueries
    Update and delete rows using correlated subqueries
    The EXISTS and NOT EXISTS operators
    Invoke the WITH clause
    The recursive WITH clause
    19. Regular Expression Support
    Use the regular expressions functions and conditions in SQL
    Use meta characters with regular expressions
    Perform a basic search using the REGEXP_LIKE function
    Find patterns using the REGEXP_INSTR function
    Extract Substrings using the REGEXP_SUBSTR function
    Replace patterns using the REGEXP_REPLACE function
    Usage of sub-expressions with regular expression support
    Implement the REGEXP_COUNT function
    ?
    ?

  • ?

  • ?

  • ?
    ?
    ?
    ?

  • ?
    ?



?
?



?



?


?


?


?
?



?
?



?


?


?


?
???


?



?
?



?


?













 

 

 

友情鏈接:Cadence培訓 ICEPAK培訓 EMC培訓 電磁兼容培訓 sas容培訓 羅克韋爾PLC培訓 歐姆龍PLC培訓 PLC培訓 三菱PLC培訓 西門子PLC培訓 dcs培訓 橫河dcs培訓 艾默生培訓 robot CAD培訓 eplan培訓 dcs培訓 電路板設計培訓 浙大dcs培訓 PCB設計培訓 adams培訓 fluent培訓系列課程 培訓機構(gòu)課程短期培訓系列課程培訓機構(gòu) 長期課程列表實踐課程高級課程學校培訓機構(gòu)周末班培訓 南京 NS3培訓 OpenGL培訓 FPGA培訓 PCIE培訓 MTK培訓 Cortex訓 Arduino培訓 單片機培訓 EMC培訓 信號完整性培訓 電源設計培訓 電機控制培訓 LabVIEW培訓 OPENCV培訓 集成電路培訓 UVM驗證培訓 VxWorks培訓 CST培訓 PLC培訓 Python培訓 ANSYS培訓 VB語言培訓 HFSS培訓 SAS培訓 Ansys培訓 短期培訓系列課程培訓機構(gòu) 長期課程列表實踐課程高級課程學校培訓機構(gòu)周末班 端海 教育 企業(yè) 學院 培訓課程 系列班 長期課程列表實踐課程高級課程學校培訓機構(gòu)周末班 短期培訓系列課程培訓機構(gòu) 端海教育企業(yè)學院培訓課程 系列班
主站蜘蛛池模板: 久久久久久久综合狠狠综合| 久久综合伊人77777| 亚洲狠狠综合久久| 激情综合网五月| 天天av天天翘天天综合网| 亚洲乱码中文字幕综合234| 色综合天天综合网国产成人网| 亚洲欧美国产日韩综合久久| 一本久道久久综合狠狠躁AV| 色综合天天综合网国产国产人| 一本久久综合亚洲鲁鲁五月天| 久久婷婷五月综合97色直播| 一本大道加勒比久久综合| 婷婷丁香五月天综合东京热| 69国产成人综合久久精品| 久久亚洲精品人成综合网| 少妇熟女久久综合网色欲| 婷婷综合另类小说色区| 99综合电影在线视频好看| 久久香综合精品久久伊人| 亚洲综合精品网站在线观看| 伊人久久综合成人网| 亚洲欧美精品综合中文字幕| 久久综合九色综合网站| 综合久久给合久久狠狠狠97色| 色婷婷久久综合中文久久一本| 色欲色香天天天综合网站| 欧美日韩国产综合视频在线观看| 国产福利电影一区二区三区久久久久成人精品综合| 欧美综合视频在线| 香蕉99久久国产综合精品宅男自| 激情综合色五月丁香六月亚洲| 99热婷婷国产精品综合| 99精品国产综合久久久久五月天| 国产成人无码综合亚洲日韩| 亚洲欧美综合在线天堂| 狠狠色婷婷七月色综合| 丁香婷婷色五月激情综合深爱| 色婷婷综合久久久久中文一区二区| 狠狠人妻久久久久久综合蜜桃| 综合无码一区二区三区|