SQL Server Video Tutorials – 292 Hours

Here is a collection of over 292 hours of premium video tutorials on SQL Server by Pluralsight. In order to view the videos, you need to become a member of Pluralsight. The SQL Server Full Text Search service architecture By Soumyasch – Own work, CC BY-SA 3.0, https://commons.wikimedia.org/w/index.php?curid=3177963 Background: SQL Server is a relational database management system. It is a software product with the primary... [Read More...]

SQL Video Tutorials – 3 Hours

Here is a collection of over 3 hours of premium video tutorials on SQL by Pluralsight. In order to view the videos, you need to become a member of Pluralsight. A chart showing several of the SQL language elements that compose a single statement By :User:SqlPac, modified by Ferdna – File:Sql statement anatomy.png, CC BY-SA 3.0, https://commons.wikimedia.org/w/index.php?curid=7557212 Background: SQL (Structured Query Language)... [Read More...]

Tip #22 – Putting the Pieces of .NET Together – Part 8 of 8 – Languages

Tip #22 – Putting the Pieces of .NET Together – Part 8 of 8 – Languages LearnVisualStudio is currently having a Summer Sale on all of its memberships. Click on the link below to receive your discount now: Get LearnVisualStudio... [Read More...]

Tip #21 – Putting the Pieces of .NET Together – Part 7 of 8 – Software Development Tools

Tip #21 – Putting the Pieces of .NET Together – Part 7 of 8 – Software Development Tools LearnVisualStudio is currently having a Summer Sale on all of its memberships. Click on the link below to receive your discount now: Get ... [Read More...]

Tip #20 – Putting the Pieces of .NET Together – Part 6 of 8 – SQL Server

Tip #20 – Putting the Pieces of .NET Together – Part 6 of 8 – SQL Server LearnVisualStudio is currently having a Summer Sale on all of its memberships. Click on the link below to receive your discount now: Get LearnVisualStudio... [Read More...]

Tip #14 – Putting the Pieces of .NET Together – Introduction

Tip #14 – Putting the Pieces of .NET Together – Introduction LearnVisualStudio is currently having a Summer Sale on all of its memberships. Click on the link below to receive your discount now: Get LearnVisualStudio at 30%... [Read More...]

SELECT WHERE Clause- SQL Server Syntax Example: WHERE – T-SQL Example

SELECT WHERE Clause- SQL Server Syntax Example: WHERE – T-SQL Example Purpose: – Illustrates the SQL Server syntax for SELECT WHERE Clause. SYNTAX: SELECT [ ALL | DISTINCT ] [ [TOP (expression) [PERCENT] [ WITH TIES ] ] column_list [ INTO new_table ] [ FROM { table_source } [ ,…n ] ] [ WHERE select_condition] [ GROUP BY ] [ HAVING search_condition ] [ ORDER BY order_expression [ ASC | DESC ] PURPOSE:... [Read More...]

SELECT TOP PERCENT – SQL Server Syntax Example: TOP PERCENT – T-SQL Example

SELECT TOP PERCENT – SQL Server Syntax Example: TOP PERCENT – T-SQL Example Purpose: – Illustrates the SQL Server syntax for TOP PERCENT. SYNTAX: SELECT [ ALL | DISTINCT ] [ [TOP (expression) [PERCENT] [ WITH TIES ] ] column_list [ INTO new_table ] [ FROM { table_source } [ ,…n ] ] [ WHERE select_condition] [ GROUP BY ] [ HAVING search_condition ] [ ORDER BY order_expression [ ASC | DESC ] NOTES:... [Read More...]

SELECT – SQL Server Syntax Example: SELECT – T-SQL Example

SELECT – SQL Server Syntax Example: SELECT – T-SQL Example Purpose: – Illustrates the SQL Server syntax for SELECT Statement. SYNTAX: SELECT [ ALL | DISTINCT ] [TOP ( expression ) [PERCENT] [ WITH TIES ] ] column_list [ INTO new_table ] [ FROM { table_source } [ ,…n ] ] [ WHERE select_condition] [ GROUP BY ] [ HAVING search_condition ] [ ORDER BY order_expression [ ASC | DESC ] NOTES: The... [Read More...]

SELECT INTO – SQL Server Syntax Example: SELECT INTO – T-SQL Example

SELECT INTO – SQL Server Syntax Example: SELECT INTO – T-SQL Example Purpose: – Illustrates the SQL Server syntax for SELECT INTO. SYNTAX: SELECT [ ALL | DISTINCT ] [TOP ( expression ) [PERCENT] [ WITH TIES ] ] column_list [ INTO new_table ] [ FROM { table_source } [ ,…n ] ] [ WHERE select_condition] [ GROUP BY ] [ HAVING search_condition ] [ ORDER BY {order_by_expression [ COLLATE collation_name ] [... [Read More...]

ORDER BY – SQL Server Syntax Example: ORDER BY – T-SQL Example

ORDER BY – SQL Server Syntax Example: ORDER BY – T-SQL Example Purpose: – Illustrates the SQL Server syntax for ORDER BY. SYNTAX: SELECT [ ALL | DISTINCT ] [TOP ( expression ) [PERCENT] [ WITH TIES ] ] column_list [ INTO new_table ] [ FROM { table_source } [ ,…n ] ] [ WHERE select_condition] [ GROUP BY ] [ HAVING search_condition ] [ ORDER BY {order_by_expression [ COLLATE collation_name ] [ ASC | DESC... [Read More...]

Next Page »