Untitled

Anonymous
plain_text
05/03/2022 10:43 AM
316 B
17
Indexable
select * from BIKE order by DATE asc;

select COUNT(*)"Total human quantity" from BIKE;

select COUNT(*)"man quantity" from BIKE where CUSTOMER_GENDER = 'M';

select COUNT(*)"woman quantity" from BIKE where CUSTOMER_GENDER = 'F';
Editor is loading...