Select two suitable statements regarding creating a new table.
Answer : B, E
Select two suitable statements regarding the following SQL statement:
CREATE TRIGGER trigger_1 AFTER UPDATE ON sales FOR EACH ROW EXECUTE PROCEDURE write_log();
Answer : A, E
Select one incorrect description about changing the settings of PostgreSQL during operation.
Answer : D
I want to restore data from a text format backup file foo.dump. Select an appropriate command.
Answer : D
PostgreSQL can use an index to access a table. Select two incorrect statements about indexes.
Answer : D, E
Select two incorrect statements concerning PostgreSQL license.
Answer : D, E
The tables "t1" and "t2" are defined below. Tables "t1" and "t2" have columns "id" that are of INTEGER type, and columns "name" that are of TEXT type. t1 t2 The following SQL command was executed. Select the number of rows in the result. SELECT * FROM t1 RIGHT OUTER JOIN t2 ON t1.id = t2.id;
Answer : B