SharePoint 2010 Video Training for Developers – 45 Free Videos
Here are forty-five free video tutorials on SharePoint 2010 for .NET Developers from Microsoft experts Ted Pattison, Andrew Connell, Chris Predeek, and Paul Stubbs. If you want great SharePoint training that covers sharepoint workflow, sharepoint documents, sharepoint service, sharepoint database, sharepoint template, and more, then this is the right series for you. photo credit: Penningtron SharePoint 2010 Training for .NET... [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...]
Or Operator – SQL Server Syntax Example: Or Operator – T-SQL Example
Or Operator – SQL Server Syntax Example: Or Operator – T-SQL Example Purpose: – Illustrates the SQL Server syntax for OR operator. SYNTAX: SELECT [ ALL | DISTINCT ] [TOP ( expression ) [PERCENT] [ WITH TIES ] ] column_list [ INTO new_table ] [ FROM { table_source } [ ,…n ] ] [ WHERE expression1 OR expression2 [ GROUP BY ] [ HAVING search_condition ] [ ORDER BY order_expression [ ASC | DESC ]... [Read More...]
Operator Precedence – SQL Server Syntax Example: Operator Precedence – T-SQL Example
Operator Precedence – SQL Server Syntax Example: Operator Precedence – T-SQL Example Purpose: – Illustrates the SQL Server syntax for operator precedence. SYNTAX: SELECT [ ALL | DISTINCT ] [TOP ( expression ) [PERCENT] [ WITH TIES ] ] column_list [ INTO new_table ] [ FROM { table_source } [ ,…n ] ] [ WHERE expression1 operator expression2 — eval highest level operators first [ GROUP BY ] [... [Read More...]
Operators – SQL Server Syntax Example: Operators – T-SQL Example
Operators – SQL Server Syntax Example: Operators – T-SQL Example Purpose: – Illustrates the SQL Server syntax for operators. SYNTAX: SELECT [ ALL | DISTINCT ] [TOP ( expression ) [PERCENT] [ WITH TIES ] ] column_list [ INTO new_table ] [ FROM { table_source } [ ,…n ] ] [ WHERE expression1 operator expression2 [ GROUP BY ] [ HAVING search_condition ] [ ORDER BY order_expression [ ASC | DESC ]... [Read More...]
NULL – SQL Server Syntax Example: NULL – T-SQL Example
NULL – SQL Server Syntax Example: NULL – T-SQL Example Purpose: – Illustrates the SQL Server syntax for the NULL. SYNTAX: SELECT [ ALL | DISTINCT ] [TOP ( expression ) [PERCENT] [ WITH TIES ] ] column_list [ INTO new_table ] [ FROM { table_source } [ ,…n ] ] [ WHERE expression IS [ NOT ] NULL [ GROUP BY ] [ HAVING search_condition ] [ ORDER BY order_expression [ ASC | DESC ] PURPOSE: NULL... [Read More...]
NOT – SQL Server Syntax Example: NOT – T-SQL Example
NOT – SQL Server Syntax Example: NOT – T-SQL Example Purpose: – Illustrates the SQL Server syntax for the NOT. SYNTAX: SELECT [ ALL | DISTINCT ] [TOP ( expression ) [PERCENT] [ WITH TIES ] ] [ INTO new_table ] [ FROM { table_source } [ ,…n ] ] [ WHERE [ NOT ] boolean_expression [ GROUP BY ] [ HAVING search_condition ] [ ORDER BY order_expression [ ASC | DESC ] PURPOSE: NOT reverses the value... [Read More...]
Logical Operators – SQL Server Syntax Example: Logical Operators – T-SQL Example
Logical Operators – SQL Server Syntax Example: Logical Operators – T-SQL Example Purpose: – Illustrates the SQL Server syntax for the logical operators. SYNTAX: SELECT [ ALL | DISTINCT ] [TOP ( expression ) [PERCENT] [ WITH TIES ] ] [ INTO new_table ] [ FROM { table_source } [ ,…n ] ] [ WHERE expression1 logical_operator expression2 ] [ GROUP BY ] [ HAVING search_condition ] [ ORDER BY order_expression... [Read More...]
LIKE – SQL Server Syntax Example: LIKE – T-SQL Example
LIKE – SQL Server Syntax Example: LIKE – T-SQL Example Purpose: – Illustrates the SQL Server syntax for the LIKE. SYNTAX: SELECT [ ALL | DISTINCT ] [TOP ( expression ) [PERCENT] [ WITH TIES ] ] [ INTO new_table ] [ FROM { table_source } [ ,…n ] ] [ WHERE match_expression [ NOT ] LIKE pattern [ ESCAPE escape_character ] ] [ GROUP BY ] [ HAVING search_condition ] [ ORDER BY order_expression [ ASC... [Read More...]
ISNULL – SQL Server Syntax Example: ISNULL – T-SQL Example
ISNULL – SQL Server Syntax Example: ISNULL – T-SQL Example Purpose: – Illustrates the SQL Server syntax for the ISNULL. SYNTAX: SELECT [ ALL | DISTINCT ] [TOP ( expression ) [PERCENT] [ WITH TIES ] ] column_list, ISNULL(check_expression, replacement_value) [ INTO new_table ] [ FROM { table_source } [ ,…n ] ] [ WHERE search_condition ] [ GROUP BY ] [ HAVING search_condition ] [ ORDER BY order_expression... [Read More...]