1 / 6

Discover Advanced SQL Tips You Might Not Know

Enhance your SQL skills with advanced tips introduced in SQL Server 2008 and 2012. Learn about the IIF function for conditional logic, which allows for concise boolean evaluations. Explore the CONCAT function to seamlessly concatenate strings, simplifying string manipulation tasks. Additionally, understand compound operators for refined expressions and the table value constructor for efficient data handling. Utilize these features to write cleaner, more efficient SQL code and streamline your database operations. Dive deeper into these powerful SQL functionalities!

jalena
Télécharger la présentation

Discover Advanced SQL Tips You Might Not Know

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. 5 SQL TIPS you may not know Minette Steynberg Minettes@Pkey.co.za Primary Key Consulting

  2. Logical condition USING IIF • Introduced in SQL Server 2012 • IIF ( boolean_expression, true_value, false_value ) http://msdn.microsoft.com/en-us/library/hh213574.aspx

  3. Concatenation USING CONCAT • Introduced in SQL Server 2012 • CONCAT ( string_value1, string_value2 [, string_valueN ] ) http://msdn.microsoft.com/en-us/library/hh231515.aspx

  4. Compound operators • Introduced in SQL Server 2008 • expression operator expression http://msdn.microsoft.com/en-us/library/cc645922.aspx

  5. Table value constructor • Introduced in SQL Server 2008 Batch Replicator http://msdn.microsoft.com/en-us/library/dd776382.aspx

  6. Template Explorer http://msdn.microsoft.com/en-us/library/ms174169.aspx

More Related