To create a database in PostgreSQL, you must have the special CREATEDB privilege or September 6, 2021September 6, 2021 administrator To create a database in PostgreSQL, you must have the special CREATEDB privilege orbe a superuser.Well Done. Your Answer is Correct Keep it Up!have a script do it.be an adminthe special CREATETBL privilege
What does the following statement do? CREATE INDEX lower_title_idx ON books ((lower(title))); September 6, 2021September 6, 2021 administrator What does the following statement do? CREATE INDEX lower_title_idx ON books ((lower(title)));Creates an index for efficient case-insensitive searches on the titles column within the books tableWell Done. Your Answer is Correct Keep it Up!Nothing, it’s invalid SQLCreates a non-write-locking indexCreates a new index with a special operator class ‘lower’ for case insensitive comparisons.
The value NULL, in database terminology, means? September 6, 2021September 6, 2021 administrator The value NULL, in database terminology, means?All options are correctWell Done. Your Answer is Correct Keep it Up!The value is undetermined at this time The value is not relevant for this particular row.The value is undetermined
To describe a table in PostgreSQL which of the following is correct: September 6, 2021September 6, 2021 administrator To describe a table in PostgreSQL which of the following is correct:psql> \d table_nameWell Done. Your Answer is Correct Keep it Up!psql> DESCRIBE table_namepsql> describe table_namepsql> \D table_name
The core PostgreSQL source code includes what interfaces? September 6, 2021September 6, 2021 administrator The core PostgreSQL source code includes what interfaces?The C and embedded C interfacesWell Done. Your Answer is Correct Keep it Up!VB and VB.NET interfacesC++ and Java interfacesRuby and PHP interfaces
Unless you specify NOT NULL, PostgreSQL will assume that a column is: September 6, 2021September 6, 2021 administrator Unless you specify NOT NULL, PostgreSQL will assume that a column is:OptionalWell Done. Your Answer is Correct Keep it Up!RequiredIntegersText
A VACUUM operation is used: September 6, 2021September 6, 2021 administrator A VACUUM operation is used:All options are correctWell Done. Your Answer is Correct Keep it Up!To recover or reuse disk space occupied by updated or deleted rowsTo protect against loss of very old data due to transaction ID wraparound.To update data statistics used by the PostgreSQL query planner.
If you don’t specify ASC or DESC, PostgreSQL will assume you want to see results: September 5, 2021September 5, 2021 administrator If you don’t specify ASC or DESC, PostgreSQL will assume you want to see results: in ascending orderWell Done. Your Answer is Correct Keep it Up!grouped together by field type in a random orderin descending order
PostgreSQL has many modern features including: September 5, 2021September 5, 2021 administrator PostgreSQL has many modern features including:All options are correctWell Done. Your Answer is Correct Keep it Up!Complex SQL queries SQL Sub-selectsViews
If you don’t specify ASC or DESC, PostgreSQL will assume you want to see results: September 5, 2021September 5, 2021 administrator If you don’t specify ASC or DESC, PostgreSQL will assume you want to see results: in ascending orderWell Done. Your Answer is Correct Keep it Up!grouped together by field type in a random orderin descending order