G11: Databases

G11: Databases

11th Grade

50 Qs

quiz-placeholder

Similar activities

Computer Science Unit 1 Glossary

Computer Science Unit 1 Glossary

10th - 12th Grade

46 Qs

Latihan Soal SQL XI RPL 1

Latihan Soal SQL XI RPL 1

11th Grade

50 Qs

9618 AS Comp Sci Full Revision Set 1

9618 AS Comp Sci Full Revision Set 1

9th - 12th Grade

45 Qs

SAS_KK-BasisData-XI-RPL_Sem-1

SAS_KK-BasisData-XI-RPL_Sem-1

11th Grade

50 Qs

Information Systems and Databases

Information Systems and Databases

11th Grade

50 Qs

KUIS BASIS DATA KELAS XI RPL - SQL & ERD

KUIS BASIS DATA KELAS XI RPL - SQL & ERD

11th Grade

50 Qs

AS-T8-Databases

AS-T8-Databases

11th Grade

52 Qs

ITX202 - Database Basics

ITX202 - Database Basics

11th Grade

50 Qs

G11: Databases

G11: Databases

Assessment

Quiz

Computers

11th Grade

Medium

Created by

Andrew Feather

Used 17+ times

FREE Resource

50 questions

Show all answers

1.

FILL IN THE BLANK QUESTION

1 min • 1 pt

// Creates a table with a primary key

CREATE TABLE Band (

  BandName varChar(25) NOT NULL, // Primary Key

  NumberOfMembers integer,

_______ KEY (BandName)

);

2.

FILL IN THE BLANK QUESTION

1 min • 1 pt

// How to delete or drop a table

____ table Band;

3.

FILL IN THE BLANK QUESTION

1 min • 1 pt

// Create table with PK All varchars

CREATE TABLE Venue(

  VenueName _______(25),

  VenueAddress1 varchar(25),

  VenueAddress2 varchar(25),

  PRIMARY Key (VenueName),

  );

4.

FILL IN THE BLANK QUESTION

1 min • 1 pt

//Creates a table with constraint on venue INC Date as datatype

CREATE TABLE Booking(

  BookingID varchar(8),

  Date Date,

  VenueName varchar(25) 

  FOREIGN KEY(VenueName) __________ Venue(VenueName),

  PRIMARY Key (BookingID),

 );

5.

FILL IN THE BLANK QUESTION

1 min • 1 pt

_____ is a collection of data which is ordered and unchangeable. Allows duplicate members.

6.

FILL IN THE BLANK QUESTION

1 min • 1 pt

// INSERTING Values into a table

______ INTO Band (BandName,NumberOfMembers) 

VALUES ('fffbfbbf','6');

7.

FILL IN THE BLANK QUESTION

1 min • 1 pt

INSERT ____ Booking VALUES ('12345678', '1980/02/26', 'theVenue');

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?