CST 363: Week 4
Briefly summarize 5 things what you have learned in the course so far. SQL utilizes various constraint keywords to ensure the values within a database are following rules that best suit the desired functionality and utility of the database. These constraints can dictate if a value is a reference to another value, whether or not NULL can be placed into a cell, and more. It's similar to how conditional statements can be implemented in Java to conduct user input validation. Database tables can be structured for maintaining data integrity and reducing redundancy through normalization. Through this process, a table may go through one or more stages called normal forms that establish rules on the table requiring rows to be moved to other tables or removed all together. SQL allows tables to be joined together using related columns. These related columns can be joined with the keyword 'using' if they have the same column name or the 'on' keyword if the columns have di...