Coursera课程Python for everyone:Quiz: Multi-Table Relational SQL

Posted GarfieldEr007

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Coursera课程Python for everyone:Quiz: Multi-Table Relational SQL相关的知识,希望对你有一定的参考价值。

Multi-Table Relational SQL

10 试题

1. 

What is the primary added value of relational databases over flat files?

Ability to store data in a format that can be sent across a network

Ability to quickly convert data to html

Ability to execute javascript in the file

Ability to scan large amounts of data quickly

Ability to execute Python code within the file

2. 

What is the purpose of a primary key?

To point to a particular row in another table

To look up a row based on a string that comes from outside the program

To track the number of duplicate values in another column

To look up a particular row in a table very quickly

3. 

Which of the following is NOT a good rule to follow when developing a database model?

Use integers as primary keys

Use a person's email address as their primary key

Model each "object" in the application as one or more tables

Never repeat string data in more than one table in a data model

4. 

If our user interface (i.e., like iTunes) has repeated strings on one column of the user interface, how should we model this properly in a database?

Make a table that maps the strings in the column to numbers and then use those numbers in the column

Put the string in the first row where it occurs and then put that row number in the column of all of the rest of the rows where the string occurs

Put the string in the first row where it occurs and then put NULL in all of the other rows

Encode the entire row as JSON and store it in a TEXT column in the database

Put the string in the last row where it occurs and put the number of that row in the column of all of the rest of the rows where the string occurs

5. 

Which of the following is the label we give a column that the "outside world" uses to look up a particular row?

Logical key

Primary key

Remote key

Foreign key

Local key

6. 

What is the label we give to a column that is an integer and used to point to a row in a different table?

Logical key

Primary key

Local key

Foreign key

Remote key

7. 

What SQLite keyword is added to primary keys in a CREATE TABLE statement to indicate that the database is to provide a value for the column when records are inserted?

AUTO_INCREMENT

INSERT_AUTO_PROVIDE

ASSERT_UNIQUE

AUTOINCREMENT

8. 

What is the SQL keyword that reconnects rows that have foreign keys with the corresponding data in the table that the foreign key points to?

COUNT

APPEND

CONNECT

JOIN

CONSTRAINT

9. 

What happens when you JOIN two tables together without an ON clause?

The number of rows you get is the number of rows in the first table times the number of rows in the second table

You get all of the rows of the left table in the JOIN and NULLs in all of the columns of the right table

You get no rows at all

Leaving out the ON clause when joining two tables is an SQL syntax error

The rows of the left table are connected to the rows in the right table when their primary key matches

10. 

When you are doing a SELECT with a JOIN across multiple tables with identical column names, how do you distinguish the column names?

tablename/columnname

tablename['columnname']

tablename->columnname

tablename.columnname

以上是关于Coursera课程Python for everyone:Quiz: Multi-Table Relational SQL的主要内容,如果未能解决你的问题,请参考以下文章

Coursera课程《Python数据结构》中课程目录

Coursera课程《Python数据结构》中课件

Coursera课程《大家的Python》中一些资料

python 使用Python heapq的Dijkstra算法,Coursera Stanford算法课程的解决方案:图形搜索,最短路径和数据结构

Coursera课程下载和存档计划[转载]

Coursera Python:为每个人分配编程5.2