Understanding a Primary Key with SQL
We use primary keys on most tables while utilizing the SQL language in an OLTP or OLAP data model. These
Read moreWe use primary keys on most tables while utilizing the SQL language in an OLTP or OLAP data model. These
Read moreOur SQL abilities tend to go from beginner to intermediate when we start to learn how to utilize subqueries. A
Read moreRelational databases that we use to write our SQL database queries contain tables. These tables will almost undoubtedly contain keys.
Read moreWe can create, alter, and delete database indexes using SQL, but what do we need really need to index for?
Read moreWe use the sql INDEX as a way to optimize our database queries. A database administrator or data architect will
Read moreWhen writing queries, functions, or procedures in SQL we often want to abbreviate and rename objects. In SQL this is
Read moreWhen writing in sql the NULL value becomes very useful. Technically a NULL isn’t a value, but the lack of
Read moreWe can use SQL views for many reasons and are very powerful when used properly. Views allow us to store
Read moreWe can use a combination of the MAX and MIN functions in conjunction with the SQL length function to get
Read moreWe can combine multiple columns together into one in SQL using concatenation. Many databases have their own versions of combining
Read more