95227011b216b00624e34cbbd921f4e24e4a1e09
Views.md
| ... | ... | @@ -22,7 +22,7 @@ Izenda recommends creating views that use Camel Case (i.e. FirstName) or undersc |
| 22 | 22 | |
| 23 | 23 | ###View Code Samples |
| 24 | 24 | |
| 25 | -A Basic View |
|
| 25 | +**A Basic View** |
|
| 26 | 26 | |
| 27 | 27 | A view is generally created by adding the create view statement to a standard SQL statement. |
| 28 | 28 | |
| ... | ... | @@ -33,7 +33,7 @@ CREATE VIEW SampleView AS SELECT FirstName FROM User |
| 33 | 33 | This article will use a fictitious database to provide samples on how to best utilize views. |
| 34 | 34 | |
| 35 | 35 | |
| 36 | -Table and Column Aliasing |
|
| 36 | +**Table and Column Aliasing** |
|
| 37 | 37 | |
| 38 | 38 | Tables and columns are often named in ways that are not intuitive to the user. Izenda recommends aliasing in such situations. |
| 39 | 39 | |
| ... | ... | @@ -41,7 +41,7 @@ Tables and columns are often named in ways that are not intuitive to the user. I |
| 41 | 41 | CREATE VIEW Persons AS SELECT ctx_fname AS FirstName, ctx_lname AS LastName FROM ctx_usrs |
| 42 | 42 | ``` |
| 43 | 43 | |
| 44 | -Combining Columns |
|
| 44 | +**Combining Columns** |
|
| 45 | 45 | |
| 46 | 46 | ``` sql |
| 47 | 47 | CREATE VIEW Events AS |