데이터 분석/SQL
-
Mysql 데이터베이스, 테이블 용량 조회하는 법데이터 분석/SQL 2021. 12. 8. 09:27
1. 데이터 베이스 용량 조회 "bmwgs" => DB name임 SELECT table_schema "bmwgs", SUM(data_length + index_length) / 1024 / 1024 "Size(MB)" FROM information_schema.TABLES GROUP BY table_schema; 2. 테이블 용량 조회 'car_model_keyword" => table name임 SELECT table_name AS 'car_model_keyword', ROUND(SUM(data_length+index_length)/(1024*1024), 2) AS 'All(MB)', ROUND(data_length/(1024*1024), 2) AS 'Data(MB)', ROUND(index_leng..
-
python json int형 datetime으로 바꾸고 mysql에 insert하기데이터 분석/SQL 2021. 11. 12. 15:45
excel 엑셀 파일을 json으로 바꾼 뒤 한줄씩 불러들여 sql에 insert하려고 했더니, datetime table에 0000-00-00 00:00:00으로 들어갔다. 알고봤더니 쥬피터노트북에서는 cs_start_date 칼럼이 datetime형이었는데 엑셀에서 json 변환할 때 int형으로 바뀌었다. 1627689600000 라는 숫자는 timestamp로 바뀌었기 때문에 안의 날짜도 변형된 것이었다. # Json 가져오기 with open('37900_customer_service_record.json', encoding='utf-8') as json_file: json_data = json.load(json_file) # print(json_data) # print(len(json_data..