Basics Flashcards

1
Q

field

A

column

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

record

A

row

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

Data Definition Language (DDL)

A

allow you to create or modify your database structure

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

Data Manipulation Language (DML)

A

used to manipulate data stored inside your database

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

Data Query Language (DQL)

A

used for querying or selecting a subset of data from a database

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

Data Control Language (DCL)

A

used for controlling access to data within a database, commonly used for granting user privileges

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

Transaction Control Commands

A

used for managing groups of statements as a unit of work

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

varchar

A

variable number of characters

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

char

A

fixed length characters

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

decimal

A

decimal numbers

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

int

A

integer values

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

date

A

date data type

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

table creation syntax (basic)

A

CREATE TABLE [tableName]
( [field1] [data-type],
[field2] [data-type]);

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

insert data into table (basic)

A

INSERT INTO [TABLE tableName]

VALUES (‘Value1’, ‘Value2’, …);

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

simple SQL query

A

SELECT [selection] FROM [TABLE name]

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

asdfasdf

A

asdfasdf