Coursera课程Python for everyone:Quiz: Many-to-Many Relationships and Python
Many-to-Many Relationships and Python
9?試題
1.?How do we model a many-to-many relationship between two database tables?
We add a table with two foreign keys
We add 10 foreign keys to each table with names like artict_id_1, artist_id2, etc.
We use the ARRAY column type in both of the tables
We use a BLOB column in both tables
2.?In Python, what is a database "cursor" most like?
A function
A Python dictionary
A method within a class
A file handle
3.?What method do you call in an SQLIte cursor object in Python to run an SQL command?
run()
socket()
send()
execute()
4.?In the following SQL,
cur.execute('SELECT count FROM Counts WHERE org = ? ', (org, ))what is the purpose of the "?"?
It is a syntax error
It is a placeholder for the contents of the "org" variable
It allows more than one boolean operation in the WHERE clause
It is a search wildcard
5.?In the following Python code sequence (assuming cur is a SQLite cursor object),
cur.execute('SELECT count FROM Counts WHERE org = ? ', (org, )) row = cur.fetchone()what is the value in row if no rows match the WHERE clause?
An empty list
-1
None
An empty dictionary
6.?What does the LIMIT clause in the following SQL accomplish?
SELECT org, count FROM Counts ORDER BY count DESC LIMIT 10It only retrieves the first 10 rows from the table
It only sorts on the first 10 characters of the column
It reverses the sort order if there are more than 10 rows
It avoids reading data from any table other than Counts
7.?What does the executescript() method in the Python SQLite cursor object do that the normal execute() method does not do?
It allows embedded JavaScript to be executed
It allows multiple SQL statements separated by semicolons
It allows database tables to be created
It allows embeded Python to be executed
8.?What is the purpose of "OR IGNORE" in the following SQL:
INSERT OR IGNORE INTO Course (title) VALUES ( ? )It makes sure that if a particular title is already in the table, there are no duplicate rows inserted
It ignores errors in the SQL syntax for the statement
It updates the created_at value if the title already exists in the table
It ignores any foreign key constraint errors
9.?For the following Python code to work, what must be added to the title column in the CREATE TABLE statement for the Course table:
cur.execute('''INSERT OR IGNORE INTO Course (title)VALUES ( ? )''', ( title, ) ) cur.execute('SELECT id FROM Course WHERE title = ? ', (title, )) course_id = cur.fetchone()[0]A UNIQUE constraint
A NOT NULL constraint
A PRIMARY KEY indication
An AUTOINCREMENT indication
《新程序員》:云原生和全面數(shù)字化實(shí)踐50位技術(shù)專家共同創(chuàng)作,文字、視頻、音頻交互閱讀總結(jié)
以上是生活随笔為你收集整理的Coursera课程Python for everyone:Quiz: Many-to-Many Relationships and Python的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。
- 上一篇: Coursera课程Python for
- 下一篇: 程序员面试题精选100题(01)-把二元