Q1
True / FalseIn PostgreSQL, the = operator is used to compare two values for equality.
The = operator is the standard operator in PostgreSQL for comparing two values to check if they are equal.
Q2
True / FalseIn PostgreSQL, the != operator is equivalent to the <> operator.
Both != and <> are used in PostgreSQL to compare two values for inequality.
Q3
True / FalseThe < operator in PostgreSQL can be used to check if one value is less than another.
The < operator is used to compare if the value on the left is less than the value on the right.
Q4
True / FalseIn PostgreSQL, the BETWEEN operator is inclusive of the boundary values.
The BETWEEN operator in PostgreSQL includes the boundary values in its comparison.
Q5
True / FalseThe LIKE operator in PostgreSQL is used to compare numeric values.
The LIKE operator is used for pattern matching in text values, not for comparing numeric values.
Q6
True / FalseIn PostgreSQL, the IN operator can be used to check if a value matches any value in a list.
The IN operator is used to compare a value against a list of values to see if it matches any of them.
Q7
True / FalseIn PostgreSQL, the ILIKE operator is case-sensitive.
The ILIKE operator is a case-insensitive version of the LIKE operator.
Q8
True / FalsePostgreSQL supports the IS DISTINCT FROM operator to handle NULL comparisons more effectively.
The IS DISTINCT FROM operator is used in PostgreSQL to compare two values, treating NULLs as distinct values rather than equal.
Q9
True / FalseThe SIMILAR TO operator in PostgreSQL uses POSIX regular expressions for pattern matching.
The SIMILAR TO operator uses SQL standard regular expressions, not POSIX regular expressions.
Q10
True / FalseIn PostgreSQL, the IS NOT DISTINCT FROM operator treats NULLs as equal for comparison purposes.
The IS NOT DISTINCT FROM operator in PostgreSQL is used to compare two values, considering NULLs as equal, which is useful in avoiding the typical issues with NULL comparisons.