曙海教育集團
全國報名免費熱線: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è)學院培訓課程 系列班
主站蜘蛛池模板: 三级韩国一区久久二区综合| 一本久久a久久精品综合夜夜| 色综合网站国产麻豆| 青青草原综合久久大伊人| 99久久国产综合精品女同图片| 一本一道久久精品综合| 精品第一国产综合精品蜜芽| 亚洲欧美综合另类图片小说区| 婷婷丁香五月天综合东京热| heyzo专区无码综合| 亚洲国产日韩成人综合天堂| 99久久亚洲综合精品网站| 久久综合鬼色88久久精品综合自在自线噜噜| 天天爽天天狠久久久综合麻豆| 亚洲欧美国产日韩综合久久| 国产精品天天影视久久综合网| 色综合视频一区二区三区| 国产亚洲综合久久系列| 国产激情电影综合在线看| 狠狠色伊人久久精品综合网| 99久久综合国产精品二区| 亚洲综合色在线| 久久狠狠爱亚洲综合影院| 久久婷婷五月综合97色一本一本| 久久综合色老色| 伊人色综合九久久天天蜜桃| 色欲综合久久躁天天躁| 中文字幕亚洲综合小综合在线| 亚洲国产日韩综合久久精品| 狠狠色丁香婷婷综合激情| 色综合色狠狠天天综合色| 久久影院综合精品| 日韩欧美亚洲综合久久影院d3| 色综合天天综合网站中国| 亚洲欧美国产日韩综合久久| 亚洲综合中文字幕无线码| 中文字幕亚洲综合久久菠萝蜜| 久久久久久综合一区中文字幕| 亚洲欧美国产日韩综合久久| 一本色道久久综合| 色综合色综合色综合|