Information Systems Flashcards

1
Q

List advantages of an information system?

A

Small amount of space.
Can be accessed quickly.
human error reduced.
A computer can deal with boring tasks.
Information can be made available to number of people simultaneously
Sophisticated electronic methods can be used to protect the information in a database.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

The essential characteristics of a relational database?

A

Data appears in tables.
The language used generates a new table as the result of a database operation.
Protected against undesirable user action.
Entities (fields) in the system have a relationship with at least one other entity.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Basic Structure of a MSQL query?

A

Select
from
note: start every problem with these 2 lines.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Definition of an information system?

A

it is a computerised record keeping system.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What does SQL stand for?

A

Structured query language.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

How to eliminate duplicate (same type) rows?

A

A result table should show one listing for each result, with duplicate rows removed.
This is achieved by the use of the key word ‘distinct’

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

How to order Column Data?

A

The order of the information appears in the way it was originally put into the table.
For example – The column pm_name in the table prime minister is ordered alphabetically. Adding the terms ‘order by’ will do this.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Ordering several columns?

A

If more than one item is included in the order by clause, a comma must separate consecutive items. Rows are arranged in order so that the second item is in specified ordered within the first (or primary) ordering criterion.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

how to ‘order by’ with numbers?

A

Simply replace the column in the order by section by the number in what order it comes.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Conditional Retrieval?

A

It is often necessary to retrieve only rows from the table which satisfies a given condition.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Analysis Definition?

A

Analyse = tell what each line in the query does and break it down into smaller pieces and examine them.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Comparison Operator?

A
Comparison Operator:
 = equal to
<> or ^= not equal to 
> greater than
^> not greater than
>= greater than or equal to
< less then 
^< not less than
<= less than or equal to
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Using the Null keyword? (is)

A

Note: The key word ‘is’ is not required in the query, it depends on your preference.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Special Operators

A

Between, In, Like

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Between Operator?

A

Retrieval on values within a range. Rows may be selected if a column or derived values lie within a specific numeric or character range.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

In Operator?

A

Rows that contain a value which appears in a given list of constants may be retrieved with the ‘in’ operator.

17
Q

Like Operator?

A

Substring search capability. Certain characters have special meaning when used with the ‘like’ operator.
An underscore refers to any single letter/ character.
The percentage sign refers to any combination of zero or more characters.
Quotes must be placed around the pattern to be matched.