The output of a SELECT statement is called results or a result set as it’s a set of data that results from a query. SELECT * - referred to as a 'select star statement' The query below selects customer ...
select * from vg order by global_sales desc limit 10; select platform, sum(global_sales) as total_sales from vg group by platform order by total_sales desc; select ...