Discover Classes. Earn Rewards.

Microsoft Transact-SQL Programming is unfortunately unavailable

Thankfully we have 11 other SQL Classes for you to choose from. Check our top choices below or see all classes for more options.

SQL Level 1

Noble Desktop @ 185 Madison Ave, New York, NY & Virtually Online

Unlock the power of SQL and relational databases with this comprehensive course. Learn how to write SQL queries, filter results, and combine data from multiple tables, all while gaining a strong foundation in database architecture. Master the fundamentals of SQL at Noble Desktop.

(372) Beginner 18 and older

SQL Level 2

Noble Desktop @ 185 Madison Ave, New York, NY & Virtually Online

Enhance your SQL skills by mastering Outer Joins, NULL data, grouping, aggregate functions, filtering, and working with dates/times. Extract and analyze specific data from databases, turning raw information into valuable insights. Prerequisite: SQL proficiency equivalent to Noble Desktop's SQL Level 1 course.

(372) Intermediate 18 and older

SQL Level 3

Noble Desktop @ 185 Madison Ave, New York, NY & Virtually Online

Take your SQL skills to the next level with this advanced course at Noble Desktop. Learn how to use subqueries, views, functions, stored procedures, and more to manipulate and analyze data in databases. Gain in-depth techniques that will prepare you for a job in data analysis or data science.

(372) Advanced 18 and older

Data Analytics Technologies Bootcamp

Noble Desktop @ 185 Madison Ave, New York, NY & Virtually Online

In this course, students will master Excel, SQL, and Tableau, some of the top data analytics tools. Here, students will gain the skills to organize, analyze, summarize, and visualize data, presenting actionable insights for effective decision-making. Comprehensive classroom training in Midtown Manhattan.

(372) All levels 18 and older
$1,949

8 sessions

Gift it!

SQL Bootcamp

Noble Desktop @ 185 Madison Ave, New York, NY & Virtually Online

Master the art of turning raw data into actionable insights with SQL queries. This hands-on course will teach you how to filter, group, and join data, as well as use advanced techniques like subqueries and aggregate functions. Gain the skills to excel in any data-driven industry and make more informed decisions.

(372) All levels 18 and older
$975

3 sessions

Gift it!
See all SQL classes NYC

Microsoft Transact-SQL Programming

  • Beginner
  • 18 and older
  • $2,595
  • (Exact location to be announced), New York, NY
  • over 5 sessions

Start Dates (0)

  • $2,595
  • NY - Manhattan @ (Exact location to be announced), New York, NY 00000
  • over 5 sessions
Showing 10 of 0

Class Description

Description

What you'll learn in this sql class:

All HOTT courses are available face-to-face, remote-live, on-demand or on-site at your facility

This Transact-SQL programming course teaches students relational database fundamentals and SQL programming skills in the Microsoft SQL Server environment. Topics covered include relational database architecture, database design techniques, and simple and complex query skills. The course also covers Microsoft-specific T-SQL programming constructs, creation and use of stored procedures and user-defined functions, use of cursors and updateable views.  


This class is intended for analysts, developers, designers, administrators, and managers new to the SQL programming language. Upon completion, participants will understand SQL functions, join techniques, database objects and constraints, and will be able to write useful stored procedures and views as well as complex queries and updates. Comprehensive hands on exercises are integrated throughout to reinforce learning and develop real competency.  


Students Will Learn:

  • Designing normalized table structures for relational databases 
  • Creating databases and tables
  • Using primary and foreign keys 
  • Writing SQL queries 
  • Using inner and outer joins 
  • Using set operators (UNION, INTERSECT, EXCEPT) 
  • Using DML for SELECT, INSERT, UPDATE, DELETE 
  • Using subqueries 
  • Using triggers and stored procedures 
  • Using aggregate functions to return totals and subtotals 
  • Programming features of T-SQL
  • Table expressions 
  • T-SQL specific data types and functions 
  • T-SQL cursors

Course Prerequisites: General computer knowledge. Familiarity with relational database concepts is helpful but not required.


Course Overview


Relational Database Fundamentals

  • Overview of Relational Database Concepts
  • Relational Databases and Relational
  • Database Management Systems
  • Data Normalization
  • DDL Syntax

Writing Basic SQL Queries

  • Displaying Table Structures
  • Retrieving Column Data From a Table or View
  • Selecting Unique Values
  • Filtering Rows Using the WHERE Clause
  • Sorting Results Using ORDER BY
  • Joining Multiple Tables
  • Using Column and Table Aliases

Creating a Database

  • Database Development Methodology Overview
  • Building a Logical Data Model
    - Identifying Entities and Attributes
    - Isolating Keys
    - Relationships Between Entities
    - Creating Entity-Relationship Diagrams
  • Transforming to Physical Design
    - Migrating Entities to Tables
    - Selecting Primary Keys
    - Defining Columns
    - Enforcing Relationships with Foreign Keys
  • Constructing the Database Using DDL
    - Creating Tables, Indexes, Constraints and Views
    - Dropping Tables, Indexes, Constraints and Views
    - Modifying Tables, Indexes, Constraints and Views

Manipulating Query Results

  • Using Row Functions
    - Character
    - Numeric
    - Date and Time
    - Data Conversion (CAST and CONVERT)
  • Using the CASE Function
  • Handling Null Values

Advanced Query Techniques

  • Inner Joins
  • Outer Joins (Left, Right, Full)
  • Performing Self-Joins
  • Subqueries
    - Simple
    - Correlated
  • Using the EXISTS Operator
  • Tips for Developing Complex SQL Queries
  • Using Aggregate Functions
    - AVG
    - COUNT
    - SUM
    - MIN
    - MAX
  • Performing Set Operations
    - UNION
    - INTERSECT
    - EXCEPT/MINUS
  • Aggregating Results Using GROUP BY
  • Restricting Groups with the HAVING Clause
  • Creating Temporary Tables

Manipulating Table Data Using SQL's Data Manipulation Language (DML)

  • Inserting Data into Tables
  • Updating Existing Data
  • Deleting Records
  • Truncating Tables
  • Performing Bulk Inserts
  • Using the OUTPUT Clause
  • Merging Data
  • Working with Identity Columns and Sequences

User-Defined Functions

  • Definition and Benefits of Use
  • CREATE FUNCTION
    - Syntax
    - RETURN Clause and the RETURNS Statement
    - Scalar vs. Table Functions
  • Comparison with Stored Procedures
  • Returning Scalar Values and Tables
  • ALTER and DROP FUNCTION

Stored Procedures

  • Definition and Benefits of Use
  • CREATE PROCEDURE
    - Syntax
    - Defining Input Parameters
    - Defining Output Parameters
    - Defining Optional Parameters
  • ALTER and DROP PROCEDURE
  • Implementation Differences

Triggers

  • Definition and Benefits of Use
  • Alternatives (e.g., Constraints)
  • CREATE TRIGGER
    - Syntax
    - Trigger Types
  • "Inserted" (or "NEW") and "Deleted" (or "OLD") Tables
  • Event Handling and Trigger Execution
  • ALTER and DROP TRIGGER

Complex Queries

  • Using Wildcard Characters with Like
  • Allowing Users to Build SQL Queries Dynamically
  • Pivoting Data
  • Summarizing Data with ROLLUP and CUBE
  • Using Partitioned Aggregates

T-SQL Code Constructs

  • Exploiting the Programming Features of T-SQL
    - Conditional Constructs
    - Looping Constructs
  • Building Multi-Batch Scripts
  • Invoking System Functions
  • Using Variables in Scripts
  • Using Temporary Tables in Scripts
  • Handling Errors
    - Using TRY...CATCH Blocks
    - Using System Variables and Functions

Working with Data Types and Functions

  • Effective Use of Data Types in SQL
    - String
    - Numeric
    - Time/Date
    - Other
  • Substitution of Non-null Values with the COALESCE and ISNULL Functions
  • Analyzing Data Points Using Ranking Functions

Using T-SQL Cursors

  • Overview of Cursors
  • Declaring a Cursor
  • Using OPEN CURSOR, CLOSE CURSOR, DEALLOCATE CURSOR Statements
  • FETCHing Results
  • Testing @@FETCH_STATUS and @@CURSOR_ROWS
  • Updating Records with Cursors

Working with Table Expressions

  • Overview of Table Expressions
  • Working with Views
  • Using Derived Tables
  • Common Table Expressions
  • Table-Valued Functions

Note: Classes do not have fixed location. Prior to each class they examine the geographical location of the enrolled students and then select a venue that will provide most convenient overall access for the students. Classes are held in hotel conference rooms and exact location is determined 2 weeks prior to the course date.

Refund Policy

Tuition includes all course materials. Students may withdraw before the second day of class to receive a 100% refund, provided course materials are returned to the instructor. Prorated refunds may be granted for withdrawals after the first day.

Cancellations and Changes: There are no cancellation fees.

Attendance Requirements: Students must attend each day of a course and successfully complete hands on exercises in order to receive a certificate of completion. If a student wishes to retake any portion of a class that he or she completes, the student may do so within 12 months at no extra cost.

Intended Audience: Hands On Technology Transfer, Inc., provides IT training designed for technology professionals who wish to quickly upgrade their computer skills. In most states, the employer bears all training costs.

Reviews of Classes at Hands On Technology Transfer, Inc. (7)

(4.6-star rating across 7 reviews)
See reviews for other classes at Hands On Technology Transfer, Inc.
loading...
Hide Reviews

Review Summary by CourseHorse

Students who have taken classes at Microsoft Transact-SQL Programming have had positive experiences and feel that the courses provided them with valuable skills. They praise the well-organized and thorough curriculum, as well as the engaging and helpful instructors. Many students express a desire to take additional courses and recommend the program to their peers. Some students appreciate the option of remote attendance, as it saves them time and expenses. Overall, students feel that the combination of knowledgeable instructors and high-quality course materials contributes to their success in learning Transact-SQL programming. Direct quotes: - "The instructor and course curriculum were well organized and extremely thorough." - "The instructor was very attentive to questions I had." - "I think that you have nailed the recipe for success with your combination of instructor and course materials."

Similar Classes

Benefits of Booking Through CourseHorse

  • Booking is safe. When you book with us your details are protected by a secure connection.
  • Lowest price guaranteed. Classes on CourseHorse are never marked up.
  • This class will earn you 25950 points. Points give you money off your next class!

Questions & Answers (0)

Get quick answers from CourseHorse and past students.

Hands On Technology Transfer, Inc.

HOTT delivers instructor-led technical training across the United States, Canada and the United Kingdom. Whether you attend in person, remote-live or on-demand, our classroom-based training philosophy zeroes in on your ability to work more productively and with higher quality results after training....

Read more about Hands On Technology Transfer, Inc.

CourseHorse Approved

This school has been carefully vetted by CourseHorse and is a verified NYC educator.

Hands On Technology Transfer, Inc.

Hands On Technology Transfer, Inc.

All classes at this location

Google Map

Give This Course as a Gift Card

  • Thousands of classes
  • No expiration
  • Unique and memorable gifts for any occasion
  • Personalized
  • Explore a passion, gain a new skill, discover a new hobby, engage in a memorable experience
  • Instant delivery
  • Lock in a price with the Inflation Buster Gift Card Price Adjuster™

Buy a Gift Card

Book this Class as a Group Event

Booking this class for a group? Find great private group events

Or see all Professional Group Events

Explore group events and team building activities ranging from cooking, art, escape rooms, trivia, and more.

CourseHorse Gift Cards

  • Creative & unique gift for any occasion
  • Thousands of classes & experiences
  • No expiration date
  • Instant e-delivery (or choose a date)
  • Add a personalized message
  • Lock in a price with the Inflation Buster Gift Card Price Adjuster™
Buy a Gift Card
gift card with the CourseHorse logo gift card with the CourseHorse logo
Loading...