Q1
True / FalseIn MySQL, the > operator can be used to compare two numeric values.
The > operator in MySQL is used to check if the value on the left is greater than the value on the right.
Q2
True / FalseThe < operator in MySQL cannot be used with string values.
The < operator can be used with string values in MySQL to compare them lexicographically.
Q3
True / FalseIn MySQL, 5 > 3 will return true.
The statement 5 > 3 will return true because 5 is greater than 3.
Q4
True / FalseIn MySQL, the expression SELECT 10 > 5; will return 0.
The expression SELECT 10 > 5; will return 1 because 10 is greater than 5.
Q5
True / FalseMySQL allows the use of the > operator in the WHERE clause to filter rows.
The > operator can be used in the WHERE clause in MySQL to filter rows based on a condition.
Q6
True / FalseIn MySQL, the comparison NULL > 0 returns true.
Any comparison with NULL in MySQL returns NULL, not true or false, because NULL represents an unknown value.
Q7
True / FalseIn MySQL, you can use the > operator to compare the results of two subqueries.
The > operator can be used to compare the results of two subqueries in MySQL.
Q8
True / FalseThe < operator can be used in MySQL to compare values in different columns of the same row.
The < operator can be used to compare values in different columns within the same row in MySQL.
Q9
True / FalseIn MySQL, the query SELECT * FROM table WHERE column > 100; will select rows where the value in column is greater than 100.
The query will select rows where the value in column is greater than 100.
Q10
True / FalseIn MySQL, the > operator can be used with date values to compare which date is later.
The > operator can be used with date values in MySQL to determine which date is later.