PGCES-02 試験問題を無料オンラインアクセス
試験コード: | PGCES-02 |
試験名称: | PostgreSQL CE 8 Silver |
認定資格: | PostgreSQL-CE |
無料問題数: | 145 |
更新日: | 2025-08-26 |
The table "foo" is defined as follows:
CREATE TABLE foo (bar TEXT);
Next, four SQL statements were executed in the following order. INSERT INTO foo VALUES
('bar'); -------- (1)
ALTER TABLE foo ADD COLUMN c1 TEXT; ---- (2)
ALTER TABLE foo ADD UNIQUE (c1); ------- (3)
ALTER TABLE foo DROP COLUMN bar; ------- (4)
Select the correct statement from those below.
The "sample" table consists of the following data:
How many rows are returned by executing the following SQL statement? SELECT * FROM
sample WHERE v ~ 'ab';
You want to create a cursor that will SELECT the "customer" table. The created cursor must be able to move in any direction and reference data even after the end of the transaction.
Select one answer containing the correct keyword(s) to fill in the underlined blank below.
DECLARE cursor1 __________ FOR SELECT * FROM customer;