{"id":143,"date":"2018-05-16T23:59:29","date_gmt":"2018-05-16T21:59:29","guid":{"rendered":"https:\/\/sql.marcus-belz.de\/?p=143"},"modified":"2020-04-22T01:50:02","modified_gmt":"2020-04-21T23:50:02","slug":"functional-design-aesthetics-of-sql","status":"publish","type":"post","link":"https:\/\/sql.marcus-belz.de\/?p=143","title":{"rendered":"Functional Design (Aesthetics) of SQL"},"content":{"rendered":"<p><a href=\"https:\/\/sql.marcus-belz.de\/?p=89\" target=\"_blank\" rel=\"noopener noreferrer\">Dieser Artikel in Deutsch&#8230;<\/a><\/p>\n<h2>Overview<\/h2>\n<p>A good programming style is the basis for readable and comprehensive source code and thus contributes substantially to the maintainability of software in the broadest sense. Well formatted code, definition and adherence to naming conventions are just a few criteria.<\/p>\n<p>The design (aesthetics) is subject to personal preferences of developers and therefor often the starting point of controversial discussions among software developers. However, integrated development environments such as Microsoft Visual Studio already support structured and formatted code very well with automatic source code formatting and code analysis features.<\/p>\n<p>Unfortunately, SQL Server Management Studio (SSMS) proves to have a lack of comparable features when developing SQL artifacts. In addition to that \u2013 or possibly just because of that \u2013 well known and accepted programming styles are not applicable to SQL code. Developing SQL code follows a completely opposed paradigm compared to developing software code. While one single SQL statement may consist of hundreds of lines software commands tend to be rather short and compact. You use many commands for achieving a goal in software development. In SQL server it is highly recommended to write one single statement as SQL is based on the mathematical set theory.<\/p>\n<p>With that it appears not be not easy to define a good SQL programming style.<\/p>\n<p>But what exactly characterizes good SQL statements? And which role does aesthetic plays in good SQL statements. And what\u2019s about functional aesthetic?<\/p>\n<p>Basically, SQL code is good when it is readable and comprehensive.<\/p>\n<p>Important criteria for this are a clean outline and structure as well as a sufficiently precise formatting and alignment of the code. If these conditions are met, power features of the SSMS editor such as the block-selection (Column Editor) and editing code in conjunction with the <strong>Search&amp;Replace<\/strong> feature allows a very efficient editing code. In this sense, the demand for structured and formatted \u2013 in the broadest sense designed \u2013 SQL code results from the functional power features of the editor used.<\/p>\n<h2>Design (Aesthetics)<\/h2>\n<p>Let\u2019s take a look at how Wikipedia defines <a href=\"https:\/\/en.wikipedia.org\/wiki\/Aesthetics\">aesthetics<\/a>. Accordingly, aesthetics is the study of perceptible beauty, of regularities and harmony in nature and art.<\/p>\n<p>The following SQL statement is valid and can be executed without problems in the database <strong>AdventureWorksDW2017<\/strong>:<\/p>\n<p class=\"EnlighterJSRAW\" style=\"padding-left: 30px;\" data-enlighter-language=\"null\"><a href=\"https:\/\/sql.marcus-belz.de\/wp-content\/uploads\/2018\/05\/post0002001.txt\" target=\"_blank\" rel=\"noopener noreferrer\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-167\" src=\"https:\/\/sql.marcus-belz.de\/wp-content\/uploads\/2018\/05\/post0002001-1.png\" alt=\"\" width=\"834\" height=\"48\" srcset=\"https:\/\/sql.marcus-belz.de\/wp-content\/uploads\/2018\/05\/post0002001-1.png 834w, https:\/\/sql.marcus-belz.de\/wp-content\/uploads\/2018\/05\/post0002001-1-300x17.png 300w, https:\/\/sql.marcus-belz.de\/wp-content\/uploads\/2018\/05\/post0002001-1-768x44.png 768w\" sizes=\"auto, (max-width: 834px) 100vw, 834px\" \/><\/a><\/p>\n<p>Although design is subject to personnel preferences, certainly the beauty, regularities, harmony and with that the meaningfulness of this statement can be called into question.<\/p>\n<p>The same statement somewhat reformatted appears more aesthetic than the previous statement:<\/p>\n<p class=\"EnlighterJSRAW\" style=\"padding-left: 30px;\" data-enlighter-language=\"null\"><a href=\"https:\/\/sql.marcus-belz.de\/wp-content\/uploads\/2018\/05\/post0002002.txt\" target=\"_blank\" rel=\"noopener noreferrer\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-166\" src=\"https:\/\/sql.marcus-belz.de\/wp-content\/uploads\/2018\/05\/post0002002-1.png\" alt=\"\" width=\"611\" height=\"287\" srcset=\"https:\/\/sql.marcus-belz.de\/wp-content\/uploads\/2018\/05\/post0002002-1.png 611w, https:\/\/sql.marcus-belz.de\/wp-content\/uploads\/2018\/05\/post0002002-1-300x141.png 300w\" sizes=\"auto, (max-width: 611px) 100vw, 611px\" \/> <\/a><\/p>\n<p>In any case, it is more readable and comprehensive. Individual components of the statement can be identified solely based on the position in the statement.<\/p>\n<p>The concept of aesthetics may be far-fetched here in the technical sense. In my view, quite a lot of requirements for can be summarized by using this term.<\/p>\n<h2>Functionality<\/h2>\n<p>The headline of this article focuses on the functionality of aesthetics. The article has less the function of SQL commands in mind but rather powerful editing features of the SSMS editor (but also other editors), which allow an efficient structural and formal design of a SQL statement. Two important power features here are the <strong>Column Editor<\/strong> and the <strong>Search&amp;Replace<\/strong> feature, along with some affinity for using the keyboard instead of the mouse.<\/p>\n<h3>Column Editor<\/h3>\n<p>The column editor is such a powerful feature in many editors that it is incomprehensible to me how little this power feature is known or used among developers. Essentially, the column editor supports block wise selection and editing of texts, while by default, the selection of text is line-based.<\/p>\n<p>For the line-based selection of texts the <strong>Shift key<\/strong> is required. The shortcut <strong>Shift+Cursor Right<\/strong>, for example, selects a word starting at the current cursor position to the right. The selection is done character by character and can span several lines:<\/p>\n<p style=\"padding-left: 30px;\"><a href=\"https:\/\/sql.marcus-belz.de\/wp-content\/uploads\/2018\/05\/post0002003.txt\" target=\"_blank\" rel=\"noopener noreferrer\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-122\" src=\"https:\/\/sql.marcus-belz.de\/wp-content\/uploads\/2018\/05\/post0001003.png\" alt=\"\" width=\"220\" height=\"160\"><\/a><\/p>\n<p>For a block wise selection of a text, the <strong>Shift key<\/strong> in conjunction with the <strong>ALT<\/strong> <strong>key<\/strong> is required. In the following example, the shortcut <strong>ALT+Shift+Cursor Down<\/strong> can be used to extend the cursor over several lines, starting from the first occurrence of alias <strong>T01<\/strong>, and then using the shortcut <strong>ALT+Shift+Cursor Right<\/strong> to select a block covering all aliases.<\/p>\n<p style=\"padding-left: 30px;\"><a href=\"https:\/\/sql.marcus-belz.de\/wp-content\/uploads\/2018\/05\/post0002004.txt\" target=\"_blank\" rel=\"noopener noreferrer\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-123\" src=\"https:\/\/sql.marcus-belz.de\/wp-content\/uploads\/2018\/05\/post0001004.png\" alt=\"\" width=\"220\" height=\"160\"><\/a><\/p>\n<p>The column editor thus allows the extension of the cursor over several lines and the selection of a block at any point in the editor. Text inputs are applied to all lines that the cursor spans. The following text was not duplicated by <strong>copy &amp; paste<\/strong> but written after spanning the cursor over 5 lines exactly once in all 5 lines.<\/p>\n<p style=\"padding-left: 30px;\"><a href=\"https:\/\/sql.marcus-belz.de\/wp-content\/uploads\/2018\/05\/post0002005.txt\" target=\"_blank\" rel=\"noopener noreferrer\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone wp-image-113 size-full\" src=\"https:\/\/sql.marcus-belz.de\/wp-content\/uploads\/2018\/05\/post0001005.png\" alt=\"\" width=\"204\" height=\"80\"><\/a><\/p>\n<p>The column editor can also be used in conjunction with the mouse. Starting from the current cursor position, a rectangle can be drawn with the left mouse button while pressing <strong>ALT+Shift<\/strong>.<\/p>\n<p style=\"padding-left: 30px;\"><a href=\"https:\/\/sql.marcus-belz.de\/wp-content\/uploads\/2018\/05\/post0002006.txt\" target=\"_blank\" rel=\"noopener noreferrer\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone wp-image-114 size-full\" src=\"https:\/\/sql.marcus-belz.de\/wp-content\/uploads\/2018\/05\/post0001006.png\" alt=\"\" width=\"204\" height=\"80\"><\/a>&nbsp; &nbsp;<a href=\"https:\/\/sql.marcus-belz.de\/wp-content\/uploads\/2018\/05\/post0002007.txt\" target=\"_blank\" rel=\"noopener noreferrer\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone wp-image-115 size-full\" src=\"https:\/\/sql.marcus-belz.de\/wp-content\/uploads\/2018\/05\/post0001007.png\" alt=\"\" width=\"204\" height=\"80\"><\/a><\/p>\n<p>A basic requirement for an efficient use of the column editor is therefore in addition to a structured outline of SQL statements a precise indentation of the elements of an SQL statement.<\/p>\n<p>Certainly, getting used to the column editor will take some time. But once you got used to it, you will not want to miss this feature anymore.<\/p>\n<h3><strong>Note<\/strong><\/h3>\n<ul>\n<li>Using the column editor works only in those areas of the editor that contain line breaks.<\/li>\n<li>You should use whitespaces instead of tabs for indentation, to allow an efficient use of the column editor. See <a href=\"https:\/\/sql.marcus-belz.de\/?p=236\">Editor Options in SSMS<\/a>.<\/li>\n<li>Block wise selection is supported by many editors and even Microsoft Word: SQL Server Management Studio, Microsoft Visual Studio, Notepad ++, etc.<\/li>\n<li>However, the implementation of this power feature can vary greatly from editor to editor.<\/li>\n<li>In SQL Server Management Studio and Microsoft Visual Studio in my opinion, the feature is implemented identically. Notepad++ also makes the column editor available via the shortcut <strong>ALT+Shift<\/strong>, but the implementation of that feature deviates from the implementation in the Microsoft products and (to my mind) is not as intuitive and comfortable as in the Microsoft products.<\/li>\n<\/ul>\n<h3>Search&amp;Replace<\/h3>\n<p>The <strong>Search&amp;Replace<\/strong> feature is probably familiar to everyone and available in SSMS via the shortcut <strong>Ctrl+H<\/strong>. Usually used for replacing single text fragments, this feature proves to be another power feature for formatting SQL code.<\/p>\n<p>An example\u2026 SQL Server supports as delimiter for object names either quotation marks ( \u201d\u201d) or square brackets ([]). Although delimiters are not mandatory, they increase the readability.<\/p>\n<p>The following two SELECT statements differ only by delimiting the field names.<\/p>\n<p style=\"padding-left: 30px;\"><a href=\"https:\/\/sql.marcus-belz.de\/wp-content\/uploads\/2018\/05\/post0002008.txt\" target=\"_blank\" rel=\"noopener noreferrer\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-110\" src=\"https:\/\/sql.marcus-belz.de\/wp-content\/uploads\/2018\/05\/post0001008.png\" alt=\"\" width=\"220\" height=\"160\"><\/a>&nbsp; &nbsp;<a href=\"https:\/\/sql.marcus-belz.de\/wp-content\/uploads\/2018\/05\/post0002009.txt\" target=\"_blank\" rel=\"noopener noreferrer\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-109\" src=\"https:\/\/sql.marcus-belz.de\/wp-content\/uploads\/2018\/05\/post0001009.png\" alt=\"\" width=\"220\" height=\"160\"><\/a><\/p>\n<p>Inserting delimiters may appear quite challenging in larger statements. In particular, inserting the closing square brackets appears somewhat time consuming as the position for all brackets differs from line to line.<\/p>\n<p>However, this task is done in a few moments.<\/p>\n<p>The brackets are quickly inserted before and after all field names by using the column editor as shown in the following figure.<\/p>\n<p style=\"padding-left: 30px;\"><a href=\"https:\/\/sql.marcus-belz.de\/wp-content\/uploads\/2018\/05\/post0002010.txt\" target=\"_blank\" rel=\"noopener noreferrer\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone wp-image-125 size-full\" src=\"https:\/\/sql.marcus-belz.de\/wp-content\/uploads\/2018\/05\/post0001010.png\" alt=\"\" width=\"220\" height=\"160\"><\/a><\/p>\n<p>Using the <strong>Search&amp;Replace<\/strong> feature, the closing square brackets can be easily indented to the left until there are no more spaces between the last character of the field names and the closing bracket. Simply replace the text <strong>&lt;space&gt;]<\/strong> by a single bracket <strong>]<\/strong> until no more occurrences of <strong>&lt;space&gt;]<\/strong> can be found.<\/p>\n<p style=\"padding-left: 30px;\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-127\" src=\"https:\/\/sql.marcus-belz.de\/wp-content\/uploads\/2018\/05\/post0001011.png\" alt=\"\" width=\"493\" height=\"160\" srcset=\"https:\/\/sql.marcus-belz.de\/wp-content\/uploads\/2018\/05\/post0001011.png 493w, https:\/\/sql.marcus-belz.de\/wp-content\/uploads\/2018\/05\/post0001011-300x97.png 300w\" sizes=\"auto, (max-width: 493px) 100vw, 493px\" \/><\/p>\n<h2>Summary<\/h2>\n<p>The more structured and formatted SQL code is, the more readable and maintainable it becomes. SSMS\u2019s <strong>Column Editor<\/strong> and <strong>Search&amp;Replace<\/strong> feature provide two powerful features that allow SQL code to be quickly and efficiently structured and formatted. The result may be regarded as aesthetic, but the aesthetic is rather incidental. The term aesthetics was used in this article as a provocative buzzword.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Dieser Artikel in Deutsch&#8230; Overview A good programming style is the basis for readable and comprehensive source code and thus contributes substantially to the maintainability of software in the broadest sense. Well formatted code, definition and adherence to naming conventions <a href=\"https:\/\/sql.marcus-belz.de\/?p=143\" class=\"read-more\">Read More &#8230;<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[4,6],"tags":[11,8,21,20,9,10,22],"class_list":["post-143","post","type-post","status-publish","format-standard","hentry","category-all-languages","category-english","tag-column-editor","tag-format","tag-maintenance","tag-namenskonvention","tag-naming-convention","tag-t-sql","tag-wartbarkeit"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Functional Design (Aesthetics) of SQL - Just another SQL blog<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/sql.marcus-belz.de\/?p=143\" \/>\n<meta property=\"og:locale\" content=\"de_DE\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Functional Design (Aesthetics) of SQL - Just another SQL blog\" \/>\n<meta property=\"og:description\" content=\"Dieser Artikel in Deutsch&#8230; Overview A good programming style is the basis for readable and comprehensive source code and thus contributes substantially to the maintainability of software in the broadest sense. Well formatted code, definition and adherence to naming conventions Read More ...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/sql.marcus-belz.de\/?p=143\" \/>\n<meta property=\"og:site_name\" content=\"Just another SQL blog\" \/>\n<meta property=\"article:published_time\" content=\"2018-05-16T21:59:29+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2020-04-21T23:50:02+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/sql.marcus-belz.de\/wp-content\/uploads\/2018\/05\/post0002001-1.png\" \/>\n<meta name=\"author\" content=\"marcus\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Geschrieben von\" \/>\n\t<meta name=\"twitter:data1\" content=\"marcus\" \/>\n\t<meta name=\"twitter:label2\" content=\"Gesch\u00e4tzte Lesezeit\" \/>\n\t<meta name=\"twitter:data2\" content=\"6\u00a0Minuten\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/sql.marcus-belz.de\\\/?p=143#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/sql.marcus-belz.de\\\/?p=143\"},\"author\":{\"name\":\"marcus\",\"@id\":\"https:\\\/\\\/sql.marcus-belz.de\\\/#\\\/schema\\\/person\\\/7b46a383907dc48ca44fae32ceb24744\"},\"headline\":\"Functional Design (Aesthetics) of SQL\",\"datePublished\":\"2018-05-16T21:59:29+00:00\",\"dateModified\":\"2020-04-21T23:50:02+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/sql.marcus-belz.de\\\/?p=143\"},\"wordCount\":1249,\"image\":{\"@id\":\"https:\\\/\\\/sql.marcus-belz.de\\\/?p=143#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/sql.marcus-belz.de\\\/wp-content\\\/uploads\\\/2018\\\/05\\\/post0002001-1.png\",\"keywords\":[\"Column Editor\",\"Format\",\"Maintenance\",\"Namenskonvention\",\"Naming Convention\",\"T-SQL\",\"Wartbarkeit\"],\"articleSection\":[\"All Languages\",\"English\"],\"inLanguage\":\"de\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/sql.marcus-belz.de\\\/?p=143\",\"url\":\"https:\\\/\\\/sql.marcus-belz.de\\\/?p=143\",\"name\":\"Functional Design (Aesthetics) of SQL - Just another SQL blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/sql.marcus-belz.de\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/sql.marcus-belz.de\\\/?p=143#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/sql.marcus-belz.de\\\/?p=143#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/sql.marcus-belz.de\\\/wp-content\\\/uploads\\\/2018\\\/05\\\/post0002001-1.png\",\"datePublished\":\"2018-05-16T21:59:29+00:00\",\"dateModified\":\"2020-04-21T23:50:02+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/sql.marcus-belz.de\\\/#\\\/schema\\\/person\\\/7b46a383907dc48ca44fae32ceb24744\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/sql.marcus-belz.de\\\/?p=143#breadcrumb\"},\"inLanguage\":\"de\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/sql.marcus-belz.de\\\/?p=143\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"de\",\"@id\":\"https:\\\/\\\/sql.marcus-belz.de\\\/?p=143#primaryimage\",\"url\":\"https:\\\/\\\/sql.marcus-belz.de\\\/wp-content\\\/uploads\\\/2018\\\/05\\\/post0002001-1.png\",\"contentUrl\":\"https:\\\/\\\/sql.marcus-belz.de\\\/wp-content\\\/uploads\\\/2018\\\/05\\\/post0002001-1.png\",\"width\":834,\"height\":48},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/sql.marcus-belz.de\\\/?p=143#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/sql.marcus-belz.de\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Functional Design (Aesthetics) of SQL\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/sql.marcus-belz.de\\\/#website\",\"url\":\"https:\\\/\\\/sql.marcus-belz.de\\\/\",\"name\":\"Just another SQL blog\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/sql.marcus-belz.de\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"de\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/sql.marcus-belz.de\\\/#\\\/schema\\\/person\\\/7b46a383907dc48ca44fae32ceb24744\",\"name\":\"marcus\",\"url\":\"https:\\\/\\\/sql.marcus-belz.de\\\/?author=1\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Functional Design (Aesthetics) of SQL - Just another SQL blog","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/sql.marcus-belz.de\/?p=143","og_locale":"de_DE","og_type":"article","og_title":"Functional Design (Aesthetics) of SQL - Just another SQL blog","og_description":"Dieser Artikel in Deutsch&#8230; Overview A good programming style is the basis for readable and comprehensive source code and thus contributes substantially to the maintainability of software in the broadest sense. Well formatted code, definition and adherence to naming conventions Read More ...","og_url":"https:\/\/sql.marcus-belz.de\/?p=143","og_site_name":"Just another SQL blog","article_published_time":"2018-05-16T21:59:29+00:00","article_modified_time":"2020-04-21T23:50:02+00:00","og_image":[{"url":"https:\/\/sql.marcus-belz.de\/wp-content\/uploads\/2018\/05\/post0002001-1.png","type":"","width":"","height":""}],"author":"marcus","twitter_card":"summary_large_image","twitter_misc":{"Geschrieben von":"marcus","Gesch\u00e4tzte Lesezeit":"6\u00a0Minuten"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/sql.marcus-belz.de\/?p=143#article","isPartOf":{"@id":"https:\/\/sql.marcus-belz.de\/?p=143"},"author":{"name":"marcus","@id":"https:\/\/sql.marcus-belz.de\/#\/schema\/person\/7b46a383907dc48ca44fae32ceb24744"},"headline":"Functional Design (Aesthetics) of SQL","datePublished":"2018-05-16T21:59:29+00:00","dateModified":"2020-04-21T23:50:02+00:00","mainEntityOfPage":{"@id":"https:\/\/sql.marcus-belz.de\/?p=143"},"wordCount":1249,"image":{"@id":"https:\/\/sql.marcus-belz.de\/?p=143#primaryimage"},"thumbnailUrl":"https:\/\/sql.marcus-belz.de\/wp-content\/uploads\/2018\/05\/post0002001-1.png","keywords":["Column Editor","Format","Maintenance","Namenskonvention","Naming Convention","T-SQL","Wartbarkeit"],"articleSection":["All Languages","English"],"inLanguage":"de"},{"@type":"WebPage","@id":"https:\/\/sql.marcus-belz.de\/?p=143","url":"https:\/\/sql.marcus-belz.de\/?p=143","name":"Functional Design (Aesthetics) of SQL - Just another SQL blog","isPartOf":{"@id":"https:\/\/sql.marcus-belz.de\/#website"},"primaryImageOfPage":{"@id":"https:\/\/sql.marcus-belz.de\/?p=143#primaryimage"},"image":{"@id":"https:\/\/sql.marcus-belz.de\/?p=143#primaryimage"},"thumbnailUrl":"https:\/\/sql.marcus-belz.de\/wp-content\/uploads\/2018\/05\/post0002001-1.png","datePublished":"2018-05-16T21:59:29+00:00","dateModified":"2020-04-21T23:50:02+00:00","author":{"@id":"https:\/\/sql.marcus-belz.de\/#\/schema\/person\/7b46a383907dc48ca44fae32ceb24744"},"breadcrumb":{"@id":"https:\/\/sql.marcus-belz.de\/?p=143#breadcrumb"},"inLanguage":"de","potentialAction":[{"@type":"ReadAction","target":["https:\/\/sql.marcus-belz.de\/?p=143"]}]},{"@type":"ImageObject","inLanguage":"de","@id":"https:\/\/sql.marcus-belz.de\/?p=143#primaryimage","url":"https:\/\/sql.marcus-belz.de\/wp-content\/uploads\/2018\/05\/post0002001-1.png","contentUrl":"https:\/\/sql.marcus-belz.de\/wp-content\/uploads\/2018\/05\/post0002001-1.png","width":834,"height":48},{"@type":"BreadcrumbList","@id":"https:\/\/sql.marcus-belz.de\/?p=143#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/sql.marcus-belz.de\/"},{"@type":"ListItem","position":2,"name":"Functional Design (Aesthetics) of SQL"}]},{"@type":"WebSite","@id":"https:\/\/sql.marcus-belz.de\/#website","url":"https:\/\/sql.marcus-belz.de\/","name":"Just another SQL blog","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/sql.marcus-belz.de\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"de"},{"@type":"Person","@id":"https:\/\/sql.marcus-belz.de\/#\/schema\/person\/7b46a383907dc48ca44fae32ceb24744","name":"marcus","url":"https:\/\/sql.marcus-belz.de\/?author=1"}]}},"_links":{"self":[{"href":"https:\/\/sql.marcus-belz.de\/index.php?rest_route=\/wp\/v2\/posts\/143","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/sql.marcus-belz.de\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/sql.marcus-belz.de\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/sql.marcus-belz.de\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/sql.marcus-belz.de\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=143"}],"version-history":[{"count":9,"href":"https:\/\/sql.marcus-belz.de\/index.php?rest_route=\/wp\/v2\/posts\/143\/revisions"}],"predecessor-version":[{"id":851,"href":"https:\/\/sql.marcus-belz.de\/index.php?rest_route=\/wp\/v2\/posts\/143\/revisions\/851"}],"wp:attachment":[{"href":"https:\/\/sql.marcus-belz.de\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=143"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/sql.marcus-belz.de\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=143"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/sql.marcus-belz.de\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=143"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}