df1.coalesce(1).write.option("header","true").format("csv").save("city_data_csv")
StoreNumber_meta.coalesce(1).write.option("header","true").format("csv").save("StoreNumber_meta", mode='overwrite')
MySQL Workbench

쿼리구조

use
: 사용할 스키마 설정
use [스키마이름];
show DATABASES; -- 데이터베이스 목록 확인
show TABLES from [스키마이름]; -- 특정 DB에 있는 테이블 목록 확인
show COLUMNS from [스키마이름.테이블이름]; -- 특정 테이블의 컬럼 정보
