Introduction to Database Programming Crossword Puzzle
Download and print this Introduction to Database Programming crossword puzzle.
Related puzzles:
Browse all Computers / IT Puzzles
QUESTIONS LIST:
- client : the software or device that requests data or services from a central system in a database environment.
- server : the system that responds to data requests and provides resources to connected clients.
- data source : the origin of the data, such as a database, spreadsheet, or web service.
- sql : the standard language used to manage and manipulate relational databases.
- relational database : a type of database that organizes data into related tables using rows and columns.
- table : a collection of related data organized into rows and columns.
- record : a single, complete set of fields in a table; also known as a row.
- row : a horizontal entry in a table that holds one record of data.
- field : a single piece of data in a record; also referred to as a column value.
- column : a vertical category of data in a table that holds values of the same type.
- primary key : a field (or combination of fields) that uniquely identifies each record in a table.
- foreign key : a field in one table that refers to the primary key in another table.
- one to many : a relationship where one record in a table relates to multiple records in another table.
- one to one : a relationship where one record in a table relates to exactly one record in another table.
- join : an sql operation used to combine rows from two or more tables based on related columns.