The first query is computationally less expensive than the second query. (Assume no indexes exist on release_date.) Query 1: SELECT DISTINCT(release_date) FROM books; Query 2: SELECT release_date FROM books;True or false?

Respuesta :

Answer:

false

Explanation:

The term 'computationally expensive' means that a given mathematical function, code or an algorithm has high computational complexity. In addition, the mathematical function or algorithm will require several steps and procedures to be completed. Based on this, the statement made in this question is not true.