Aggrea Flashcards
An organized collection of data stored in a computer system
Database
What controls a database
Database management system
Commonly used for data querying and writing
Structured Query Language (SQL)
Raw and unprocessed information
Data
A piece of information that can be translated into a form for efficient movement and processing
Data
Interchangeable information
Data
Database is also called
Structured data
A piece of information that can be translated into a form for effecient movement and processing is called
Data
Refers to related data in a structured form
Database
Functions where the values of multiple rows are grouped as input on certain criteria to form a single result of more significant meaning
SQL Aggregate functions
used to summarize data by combining multiple values to form a single result
SQL Aggregate Functions
SQL aggregate functions are mostly used with the GROUP BY clase of the
SELECT statement
Various aggregate functions
COUNT, SUM, AVG, MIN, MAX
Returns the total number of records
Count (*)
Create a table in SQL
CREATE TABLE Employee(
Id INT PRIMARY KEY,
Name char (100),
Salary int (100)
);
INSERT INTO Employee (Id, Name, Salary)
VALUES (1, ‘A’, 802), (2, ‘B’, 124);