摘要:
Get方式: local id = tostring(ngx.var.arg_id)local type = tostring(ngx.var.arg_type) Post方式: ngx.req.read_body()local args = ngx.req.get_post_args()... 阅读全文
摘要:
select case RIGHT(RESOURCE_SIZE,2) when 'MB' THEN SUBSTRING_INDEX(RESOURCE_SIZE,'MB',1)*1024 ELSE SUBSTRING_INDEX(RESOURCE_SIZE,'KB',1) END as aaa fro... 阅读全文