酷代码 AI
菜单
全部AI  /  热门  /  AI写代码神器
服务商

select device_id ,  touint8orzero(   jsonextractstring(    bl.param,    'userbehaviortype' ) ) as userbehaviortype, code , date_time as "time", row_number() over ( partition by device_id order by date_time ) as "sort" from fl_dwm_bury_log bl where bl.os_version in (13) and bl.code != 'user_active_common_service_point' and bl.`day` >= 20240514 and bl.day <= 20240514 and userbehaviortype = 1 and bl.device_id = '17156129439657919217' order by bl.device_id, bl.da

It seems like there's a typo in the SQL query, specifically in the `order by` clause. Assuming you meant to order by `date_time`, the corrected query should look like this: ```sql SELECT device_id, touint8orzero(jsonextractstring(bl.param, 'userbehaviortype')) as userbehaviortype, code, date_time as "time", row_number() over ( partition by device_id ORDER BY date_time ) as "sort" FROM fl_dwm_bury_log bl WHERE bl.os_version = 13 AND bl.code != 'user_active_common_service_point' AND bl.day >= 20240514 AND bl.day <= 20240514 AND userbehaviortype = 1 AND bl.device_id = '17156129439657919217' ORDER BY bl.device_id, date_time; ``` This query selects specific columns from the `fl_dwm_bury_log` table, filters rows based on the given conditions, and orders the results by `device_id` and `date_time`. [2024-05-14 11:17:48 | AI写代码神器 | 262点数解答]

相关提问