sql1 - 위도, 경도, 컬럼명 변경

화이팅·2023년 1월 27일
0

sql

목록 보기
13/17

내가 하지 못한 거

  1. 위도, 경도
tmp=gmaps.geocode(address,language='ko')
        lat=tmp[0].get('geometry')['location']['lat']
        lng=tmp[0].get('geometry')['location']['lng']

왜 자꾸 tmp[0]이 범위에 없다고 할까
그래서 둘 다 csv파일로 못 만듬

--> try: 로 예외처리 해주기 (위도,경도 정보 안뜨는 데이터 있기 때문)
--> 그래도 오류나면 그냥 continue;;..

  1. 쿼리문 쉽게 생각했음..
    막상 하려고 하니 뭘 해야될지 모르겠음

- 컬럼명 변경

num_feilds=len(cursor.description)
field_names=[i[0] for i in cursor.description]
print(field_names)

['s_id', 's_brand', 's_name', 's_gu', 's_address', 's_lat', 's_lng', 'e_id', 'e_brand', 'e_name', 'e_gu', 'e_address', 'e_lat', 'e_lng']

df.columns=field_names

  • s_id로 컬럼 명 바꾸는 방법
    --> alias 활용 select s.id s_id
profile
하하...하.

0개의 댓글