Online Access Free PGCES-02 Exam Questions
Exam Code: | PGCES-02 |
Exam Name: | PostgreSQL CE 8 Silver |
Certification Provider: | PostgreSQL-CE |
Free Question Number: | 145 |
Posted: | Aug 30, 2025 |
Select the correct result generated by execution of the following SQL statements: CREATE
TABLE log (id int, message TEXT, logtime TIMESTAMP);
CREATE TABLE log_01 () INHERITS (log);
INSERT INTO log_01 VALUES (1, 'error', CURRENT_TIMESTAMP); SELECT * FROM log;
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';