Closed kenu closed 3 years ago
-- coalition 분리
-- 1. column으로 분리
select * from users;
select id, username, data,
json_extract(data, '$.coalition') as coalition,
active, createdAt, updatedAt
from users;
update users
set coalition = json_extract(data, '$.coalition')
where 1 = 1;
API 호출 제한: 시간당 1200건
/users
,/coalition
두 번 호출할 경우 600명 이상에 오버.Too many request ... 429
에러 만남.해법
Limits