Untitled

 avatar
unknown
plain_text
3 years ago
235 B
8
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...