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

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

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

課程大綱
 
  • 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培訓系列課程 培訓機構課程短期培訓系列課程培訓機構 長期課程列表實踐課程高級課程學校培訓機構周末班培訓 南京 NS3培訓 OpenGL培訓 FPGA培訓 PCIE培訓 MTK培訓 Cortex訓 Arduino培訓 單片機培訓 EMC培訓 信號完整性培訓 電源設計培訓 電機控制培訓 LabVIEW培訓 OPENCV培訓 集成電路培訓 UVM驗證培訓 VxWorks培訓 CST培訓 PLC培訓 Python培訓 ANSYS培訓 VB語言培訓 HFSS培訓 SAS培訓 Ansys培訓 短期培訓系列課程培訓機構 長期課程列表實踐課程高級課程學校培訓機構周末班 端海 教育 企業 學院 培訓課程 系列班 長期課程列表實踐課程高級課程學校培訓機構周末班 短期培訓系列課程培訓機構 端海教育企業學院培訓課程 系列班
主站蜘蛛池模板: 一本色综合久久| 国产精品天干天干综合网| 久久综合九色综合网站| 亚洲VA综合VA国产产VA中| 狠狠色丁香久久婷婷综合蜜芽五月 | 插插插色欲综合网| 97SE亚洲国产综合自在线观看| 亚洲精品第一国产综合精品99| 青青热久久综合网伊人| 伊人久久综合无码成人网| 伊人情人综合成人久久网小说| 九九久久99综合一区二区| 91精品国产色综合久久| 激情综合亚洲色婷婷五月APP| 色拍自拍亚洲综合图区| 91精品欧美综合在线观看| 亚洲另类激情综合偷自拍| 国产综合成人久久大片91| 五月天激情综合网丁香婷婷 | 天天做天天爱天天爽综合区| 色综合久久综精品| 色综合.com| 伊人成色综合网| 亚洲国产精品成人AV无码久久综合影院 | 亚洲色偷偷狠狠综合网| 97se色综合一区二区二区| 色噜噜成人综合网站| 综合欧美视频一区二区三区| 国产成+人+综合+欧美亚洲| 亚洲欧美日韩综合在线观看不卡顿| 一本一本久久a久久综合精品蜜桃| 乱欧美综合| 一本久久知道综合久久| 狠狠色成人综合网图片区| 日韩欧美Aⅴ综合网站发布| 色婷婷综合久久久中文字幕| 久久综合给合久久狠狠狠97色| 97久久久精品综合88久久 | 久久久综合九色合综国产| 狠狠色丁香婷婷综合尤物| 国产成人综合久久综合|