Largest Wireless Packages

Start Timer

0:00:00

Upvote
4
Downvote
Save question
Mark as completed
View comments (31)

The table packet_rates contains data about wireless packages sent from multiple devices to different networks (SSID).

Write a query that returns, for each SSID, the largest number of packages sent by a single device in the first 10 minutes of January 1st, 2022.

Example:

Input:

packet_rates table

Column Type
packet_id INTEGER
ssid VARCHAR
mac_address VARCHAR
time_captured DATETIME
packet_size INTEGER

Output:

Column Type
ssid VARCHAR
max_number_of_packages_sent INTEGER
.
.
.
.
.


Comments

Loading comments