SQL 1주차 라이브세션 과제 (1~3회) (작성중)
1회차/*문제1 date 컬럼이 2023-01-01 보다 큰 날짜의 game_account_id, game_actor_id, serverno를 추출해주세요.*/select game_account_id, game_actor_id, serverno, datefrom users uwhere date > '2023-01-01' /*문제2 level > 10, * serverno !=1 * etc_str2='레벨업 패키지' or '시즌패스' * etc_str1 '상점에서 구매' * date, ip_addr, exp, zone_id 조회 date 기준 내림차순 */select date, ip_addr, exp, zone_idfrom users u where serverno > 1and etc_str..