A well-designed schema in a relational database typically involves the use of ________ to ensure that relationships between tables are maintained.
- Foreign Keys
- Indexes
- Stored Procedures
- Triggers
A well-designed schema in a relational database typically involves the use of "foreign keys" to ensure that relationships between tables are maintained. Foreign keys establish referential integrity, ensuring that data in one table corresponds to data in another table, maintaining the integrity of the database relationships.
Loading...
Related Quiz
- What is the difference between a static import and a dynamic import in JavaScript?
- Why might a developer list a package as a devDependency instead of a dependency?
- How can you enable CORS for specific domains in your Node.js application?
- Pug was formerly known as ______ before it was renamed.
- You need to expose a global utility function that should be accessible across different modules in your Node.js application. How would you leverage the global object to achieve this?