Select two transaction isolation levels supported in PostgreSQL.
Question No 2
PostgreSQL can use an index to access a table. Select two incorrect statements about indexes.
Question No 3
Select two incorrect statements regarding 'DOMAIN'.
Question No 4
Select two suitable statements regarding the data types of PostgreSQL.
Question No 5
The table "score" is defined as follows:
gid | score
- ---- + - ------
1 | 70 1 |
60 2 | 100
3 | 80 3 |
50
The following query was executed. Select the number of rows in the result.
SELECT gid, max(score) FROM score GROUP BY gid HAVING max(score) > 60;