返回卡包市场

Databases (Paper 2)

暂无描述。系统推荐的高质量记忆内容,适合每天坚持背诵学习。

卡片总数: 8内容版本: v4公开卡包更新时间: 8/1/2026

卡片预览 (8 张)

#1
正面 (问题)

What is a primary key?

背面 (解答)

A unique identifier for the records of the table

#2
正面 (问题)

What are records in a table?

背面 (解答)

The rows

#3
正面 (问题)

What are fields in a table?

背面 (解答)

Columns

#4
正面 (问题)

What does SQL stand for?

背面 (解答)

Structured query language

#5
正面 (问题)

What is the format of an SQL statement?

背面 (解答)

SELECT … FROM …. WHERE …. ORDER BY ….

#6
正面 (问题)

What is the format of an SQL statement when doing a count statement?

背面 (解答)

SELECT COUNT(….) FROM …. WHERE

#7
正面 (问题)

What is the format of an SQL statement when doing a sum statement?

背面 (解答)

SELECT SUM(….) FROM …. WHERE ….

#8
正面 (问题)

Which validation rules can you use on fields in a datatbase?

背面 (解答)

-Length check -Format check -Range check -Presence check