PICTURE OF SQL TABLE PLEASE LOOK
I'd like to count the number of uris that have xml in it for each request_ip, so id like the results table to look like this
| Request ip | Number of hits |
| 34.212.134 | 37298191 |
This is the query I tried but it didn't work
SELECT request_ip
FROM "default"."www-live-lon-cf"
COUNT (uri)
WHERE date>=date('2022-08-20')
AND date<=date('2022-10-31')
AND uri LIKE '%.xml'
group by request_ip
You need to place
count
into the select statement:If you want "human-readable" column names you can use double quotes for them: