Computer

Which SQL command is used to modify existing records within a database table?

Which SQL command is used to remove existing records from a database table?

Which SQL command is used to create a new table structure within a database?

Which SQL command is used to permanently remove an entire table, including its structure and data, from a database?

Which SQL command is used to modify the structure of an existing table, such as adding or removing a column?

Which database key uniquely identifies each record within a table and cannot contain duplicate or null values?

Which database key is a field in one table that references the primary key of another table, establishing a relationship between them?

Which database key refers to a column, or combination of columns, that could qualify as a unique identifier for a table's records?

Which database key is formed by combining two or more columns to uniquely identify a record, when no single column suffices?

What is the process of organizing a database's tables and columns to minimize data redundancy and improve data integrity called?

What is the process of intentionally introducing redundancy into a database, often to improve read performance, called?

What database structure improves the speed of data retrieval operations at the cost of additional storage and update overhead?

What term describes a virtual table in a database, generated from a stored SQL query, that does not itself store data physically?

What database object automatically executes a predefined action in response to specific events, like an insert or update?

What overall term describes the structural design of a database, including its tables, fields, and relationships?

What does the acronym 'ACID', describing key database transaction properties, stand for?

Which ACID property ensures that a database transaction is treated as a single, indivisible unit that either fully completes or fully fails?

Which ACID property ensures that a database transitions from one valid state to another, maintaining all defined rules and constraints?

Which ACID property ensures that concurrently executing transactions do not interfere with or affect each other's outcomes?

Which ACID property ensures that once a transaction is committed, its changes are permanently saved even in the event of a system failure?

Which category of database management systems is designed for flexible, non-tabular data storage, often used for large-scale, unstructured data?

Which type of NoSQL database stores data as flexible, JSON-like documents, such as MongoDB?

Which type of NoSQL database stores data simply as pairs of unique keys and corresponding values, such as Redis?

Which type of NoSQL database organizes data into columns rather than rows, optimized for handling very large datasets, such as Cassandra?

Which type of NoSQL database is specifically designed to store and query data based on relationships between entities, such as Neo4j?