• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/71

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

71 Cards in this Set

  • Front
  • Back

/* and */

The symbols used to indicate a comment line in an SQL script in SQL Server 2014, Oracle Database 12c and My SQL 5.6.

ad-hoc queries

A query created by a user as and when needed, as compared to a predefined and stored query.

American National Standards Institute


(ANSI)

The American standards organization that creates and publishes the SQL standards.

AVG

In SQL a function that computes the average of a set of numbers.

business intelligence systems


(BI)

Information systems that assist managers and other professionals in the analysis of current and past activities and in the prediction of future events. Two major categories of BI systems are reporting systems and data mining systems.

Cartesian product

The SQL operation of paring each and every row in one table with each and every row in anohter table. The Cartesian product is the first step in an SQL join operation.

character strings

Database data composed of letters, numbers, and special characters such as @,#,$, and %.

complement

either of two parts or things needed to complete the whole; counterpart.

correlated subquery

A type of subquery in which an element in the subquery refers to an element in the containing query. A subquery that requires nested processing.

COUNT

In SQL a function that counts the number of rows in a query result.

CROSS JOIN

Is a JOIN operation that produces the Cartesian product of two tables. Unlike other JOIN operators, it does not let you specify a join clause. You may, however, specify a WHERE clause in the SELECT statement.

CRUD

An acronym for create, read, update,and delete. It is used to describe the four actions done to data by a DBMS.

data control language


(DCL)

A language used to describe the permissions granted in a database. SQL DCL is that portion of SQL that is used to grant and revoke database permissions.

data definition language


(DDL)



A language used to describe the structure of a database. SQL DDL is that portion of SQL that is used to create, modify, and drop database structures.

data manipulation language


(DML)

A language used to describe the processing of a database. SQL DML is that portion of SQL that is used to query insert, update, and modify data.

data sublanguage

A language for defining and processing a database to be embedded in programs written in another language. A data sublanguage is an incomplete programming language because it contains only constructs for data access.

data warehouse DBMS

The DBMS product used by the data warehouse.

empty set

In an SQL query, a query response that contains no records, indicating that there is no data in the database that matches the query.

equijoin

The process of joining relation A containing attribute A1 with B containing attribte B1 to form relation C, so for each row in S.A!=B1. Both A1and B1 are represented in C.

Extract, Transform,and Load system


(ETL)

The portion of a data warehouse that converts operational data to data warehouse data.

graphical user interface


(GUI)

A user interface that uses Graphical elements for interaction with a user.

implicit join

In SQL statements, a join that does not use the SQL JOIN ON syntax.

inner join

Synonym for join, Contrast with outer join.

International Organization for Standardization


(ISO)

The international standards organization that works on SQL standards, among others.

intersection

A set theory operation similar to a logical and operation.

joining two tables

In SQL the process of combining data rows from two tables.

MAX

In SQL a function that determines the largest value in a set of numbers.

Microsoft Access


asterisk (*) wildcard character

A character used in Microsoft Access 2013 queries to represent one or more unspecified characters.

Microsoft Access


question mark (?) wild card character

A character used in Access 2013 queries to represent a single unspecified character.

MIN

In SQL a function that determines the smallest value in a set of numbers.

NULL

Whether the column has NULL constraint or a NOT NULL constraint.

null value

An attribute value that has never been supplied, such values are ambiguous and can mean that (a) the value is unknown,(b) the value is not appropriate , or (c) the value is known to be blank.

online transaction processing system


(OLTP)

An operational database system available for, and dedicated to, transaction processing.

query by example


(QBE)

A style of query interface, forst developed by IBM but now used by Microsoft Access 2013 and other DBMS products, that enables users to express queries by providing examples of the results they seek.

schema

1. In My SQL a synonym for database.


2. A complete logical view of the database.

set

In Mathematical set theory, a collection of things (often referred to as objects).

set operators

In mathematical set theory, the symbols for operations that may be done with sets. In SQL set operators that mimic set operations are specifically UNION, INTERSECT, and EXCEPT, The SQL , logical operators AND, OR and NOT also implement some set theory functionality.

set theory

The area of mathematics that works with sets.

SQL ALL keyword

Transact- SQL reserved keywords can be as identifiers or names of databases or database objects, such as tables, columns, views, and so on. Use either quoted identifiers or delimited identifiers. Using reserved keywords as the name of variables and stored procedure parameters is not restricted.

SQL AND operator

The SQL operator used to combine conditions in an SQL WHERE clause.

SQL AS keyword

later

SQL BETWEEN operator

The BETWEEN operator is used to select values within a range. The Values can be numbers, text, or dates.

SQL built in aggregate functions

In SQL the functions COUNT, SUM, AVG, MAX, or MIN.

SQL comment

Comments can be used to explain sections of SQL statements, can also be used to prevent execution, when testing alternative SQL statements.

SQL comparison operator

The equal sign (=) that appears in the WHERE clause or other symbol operator signs.

SQL DESC keyword

Thus , to sort first by Prices in descending order and then by OrderNumber in ascending order, we use the sql query.

SQL DISTINCT keyword

In a table, a column may contain many duplicate values; and sometimes you only want to list the different (distinct) values.

SQL EXCEPT operator

The result is all the row values in the first table but not the second.

SQL expression

A formula or set of values that determines the exact results of an SQL query. We can think of an SQL expression as anything that follows an actual or implied equal to (=) character(or any other relational operator, such as greater than |>|, less than |<| and so on) or that follows certain SQL keywords,such as LIKE and BETWEEN.

SQL FROM clause

The part of an SQL SELECT statement that specifies conditions used to determine which tables are used in a query.

SQL GROUP BY clause

The part of an SQL SELECT statement that specifies conditions for grouping rows when determining the query results.

SQL HAVING clause

The part of an SQL SELECT statement that specifies conditions used to determine which rows are in groupings in a GROUP BY clause.

SQL IN operator

The IN operator allows you to specify multiple values in a WHERE clause.

SQL inner join

selects all rows from both tables as long as there is a match between the columns in both tables.

SQL INNER JOIN phrase

An sql inner join returns all rows from multiple tables where the join condition is met.

SQL INTERSECT operator

The result is all the row values common to both tables.

SQL IS keyword

check later

SQL IS NOT NULL operator

select only the records with no NULL values in the "Address" column.

SQL IS NULL operator

select only the records with NULL values in the "Address" column.



SQL join operator

In SQL the process of combining data rows from two tables by using a relational algebra operation on two relations. A and B, which produces a third relation, C, A row of A is concatenated with a row of B to form a new row in C if the rows in A and B meet a restriction concerning their values.

SQL JOIN keyword

are used to combine rows from two or more tables.

SQL JOIN operator

check later

SQL JOIN ON syntax

The SQL syntax used to create an explicit join.

SQL LEFT JOIN synatax

The left Join keyword returns all rows from the left table (table 1), with the matching rows in the right table (table 2). The result is NULL in the right side when there is no match.

SQL left outer join

The table we want is listed first in the query and is this on the left side of the table listing.

SQL LIKE operator

The like operator is used to search for a specified pattern in a column.

SQL logical operators

The operators,AND, OR, and NOT.

SQL MINUS operator

check

SQL NOT BETWEEN operator

To display the products outside the range of the previous example, NOT BETWEEN:



SQL NOT IN operator

check

SQL NOT LIKE operator

using NOT keyword allows you to select records that do NOT match the patterns.