PostgreSQL-CE PostgreSQL CE 8 Silver - PGCES-02 模擬練習
Select two incorrect statements regarding 'TRIGGER'.
正解: C,D
Select the most suitable statement about the PostgreSQL license from below.
正解: A
Select one incorrect statement concerning the relational data model.
正解: A
Select two incorrect statements regarding large objects.
正解: C,D
Select two commands below from which privileges cannot be changed by the GRANT and
REVOKE statements.
REVOKE statements.
正解: A,C
The following SQL statements were executed using psql.
Select the appropriate statement about the result.
LISTEN sign_v; BEGIN; NOTIFY sign_v;
COMMIT; LISTEN sign_v;
Select the appropriate statement about the result.
LISTEN sign_v; BEGIN; NOTIFY sign_v;
COMMIT; LISTEN sign_v;
正解: C
Which psql command do you need to execute to display the list of tables in the currently connected database?
正解: D
A set of tables are defined as follows:
t1
t2
How many rows are returned by executing the following SQL statement?
SELECT * FROM t1
WHERE EXISTS (SELECT name FROM t2 WHERE t1.id = t2.id);
t1
t2
How many rows are returned by executing the following SQL statement?
SELECT * FROM t1
WHERE EXISTS (SELECT name FROM t2 WHERE t1.id = t2.id);
正解: A