Relational database
Data Types
Single File Database
Querying Data
Date/Timestamps
100

No License Required

What is free to use/public domain?

100

TEXT

What is a string of characters?

100

Single "ordinary" file on disk

What is entire database?

100

SELECT Clause

What is used to retrieve data from tables?

100

Integer or string values

What is no date/timestamp type?

200

Compact

What is self-contained and serverless?

200

INTEGER

What is a value that is a signed 64-bit integer?

200

Database changes

What is write access to file and directory?

200

SELECT DISTINCT

CurrentColumnName1 AS 'NewNameofmychoice1',

CurrentColumnName2 AS 'NewNameofmychoice2'

FROM TableName

What is Aliasing or changing a Column name?

200

SELECT datetime (time_column/1000, 'unixepoch');

What is converting Unix Epoch Timestamps?

300

Small footprint

What is a 500KB library?

300

REAL

What is a floating point/decimal value?

300

Located anywhere

What is easily moved?

300

SELECT CompanyName, CustomerName,

CASE

WHEN State = ‘OR’ THEN ‘Oregon’

WHEN State = ‘CA’ THEN ‘California’

WHEN State = ‘AK’ THEN ‘Alaska’

ELSE

'Unknown State'

END AS State

FROM Customer 

What is Expression to Enumerate Values?

300

SELECT

datetime (time_column + 978307200, 

'unixepoch', 'localtime');

What is converting Mac Absolute Timestamps?

400

Cross-platform

What is utilized by Windows, Linux, OS X, Android, iOS?

400

BLOB

What is Binary Large Object value?

400

Dominate data storage medium

What is utilized by numerous mobile apps as well as desk apps?

400

Select Id, ShipName, Freight

from [Order]

where Freight > 48 OR ShipName like '%rattlesnake%'

What is filtering with the Where clause?

400

SELECT

datatime ((time_column/1000000) - 11644473600, 'unixepoch');

What is converting Chrome/Webkit Timestamps?

M
e
n
u