Overview
In today's competitive environment, information is one of the most important factors in determining the success of an organization. If you are able to manage and retrieve information efficiently, you can streamline the organization's processes and give it a competitive edge. Some data analysis tasks may require that you query multiple tables simultaneously or create complex views of data.
_
With our `
SQL Querying: Fundamentals ![]()
course you learned the basics of SQL querying.
_
During this SQL Querying Advanced class you will build on that foundation, learning advanced querying techniques such as writing nested queries and using views to simplify repetitive querying tasks. You will learn how to perform common database administration tasks such as duplicating tables; modifying table structures; inserting, updating, or deleting data; and indexing tables to optimize query performance. You will also learn how to work with multiple tasks as a transaction.
In This Course You will:
• Construct advanced queries and apply them to data.
• Use nested queries to generate query output.
• Manipulate table data by inserting, modifying, and deleting data.
• Manipulate the structure of tables.
• Work with views to present data.
• Index data to improve querying efficiency.
• Manage database transactions.
Target Student
This course is intended for individuals who have basic SQL skills and who want to expand their skillset with more advanced tasks.
Prerequisites
To ensure your success in this course, you should have at least basic experience with SQL querying, including selecting data using conditions, working with functions, organizing data, and retrieving data from multiple tables. You can obtain this level of skills and knowledge by taking the following Logical Operations course:
COURSE OUTLINE
Nested Queries
Search Based on Values from a Subquery
Compare Values from a Subquery
Search Based on the Existence of Records
Generate Output Using Correlated Subqueries
Filter Grouped Data Within Subqueries
Perform Multiple-Level Subqueries
Manipulating Table Data
Insert Rows
Modify and Delete Data
Manipulating the Table Structure
Create a Table
Create a Table with Constraints
Modify a Table's Structure
Delete Tables
Working with Views
Create a View
Manipulate Data in Views
Indexing Data
Create Indexes
Drop Indexes
Managing Transactions
Begin Transactions
Roll Back Transactions
Commit Transactions