Curioustab
Aptitude
General Knowledge
Verbal Reasoning
Computer Science
Interview
Take Free Test
Aptitude
General Knowledge
Verbal Reasoning
Computer Science
Interview
Take Free Test
Introduction to SQL Questions
In SQL aggregation, does COUNT(column_name) tally only rows where the column is non-NULL, ignoring NULLs?
Core SQL aggregates: Are COUNT, SUM, AVG, MAX, and MIN the standard built-in aggregate functions commonly available in SQL implementations?
In SQL, does the LIKE operator in a WHERE clause select a numeric or date “range of values,” similar to BETWEEN?
Views: Is a “dynamic view” (ordinary SQL view) one whose contents are computed on demand when the view is referenced, rather than stored physically?
Is SELECT–FROM–WHERE the fundamental template of SQL SELECT statements (with optional GROUP BY, HAVING, ORDER BY, etc.)?
Subqueries: Is a SELECT nested inside another SELECT and enclosed in square brackets [ ... ] called a subquery?
Indexes in relational databases: Can indexes generally be created or dropped at any time (subject to privileges and workload considerations)?
Is SQL considered a general-purpose programming language, or is it better described as a specialized, declarative data sublanguage for managing relational data?
Does the SQL SELECT command (with its clauses) enable users to perform flexible, ad hoc queries over table data?
1
2
3
4