Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 창궐
- red hearse
- 우한코로나
- 확진자수
- 코로나
- 우한코로나바이러스
- 봉준호감독통역사
- 우한
- 조현병
- 코로나19
- parasite
- 치앙마이
- 정은경 본부장님
- 중국외교부
- 최성재
- 필리핀사망
- 코로나바이러스
- 봉준호감독통역
- Bolton
- everybody wants you
- 진짜영웅
- cnn
- 신종코로나
- sharonchoi
- 웨일즈
- 미중
- wuhan
- 우한 코로나
- 어서와한국은처음이지
- 전염병
Archives
- Today
- Total
오지's blog
쿼리 수행시 ValueError: unsupported format character 'I' (0x49) at index 69 에러 해결방안 본문
개발노트/Python
쿼리 수행시 ValueError: unsupported format character 'I' (0x49) at index 69 에러 해결방안
오지구영ojjy90 2023. 4. 25. 15:08728x90
반응형
result = engine.execute(f"SELECT TABLE_NAME FROM information_schema.TABLES WHERE ENGINE LIKE '%InnoDB%' AND TABLE_TYPE='BASE TABLE';").fetchone()
ValueError: unsupported format character 'I' (0x49) at index 69 에러 발생
% 대신 %%으로 수정하여 해결
result = engine.execute(f"SELECT TABLE_NAME FROM information_schema.TABLES WHERE ENGINE LIKE '%%InnoDB%%' AND TABLE_TYPE='BASE TABLE';").fetchone()
'개발노트 > Python' 카테고리의 다른 글
dict를 넘길때는 double asterik (0) | 2024.06.17 |
---|---|
DateTimeOffset.UtcNow.ToUnixTimeSeconds() python변환 (0) | 2024.06.13 |
s3에서 가장 최근 업로드한 파일 찾기 - sorted 연습 python (0) | 2023.04.13 |
excel에서 dataframe형식으로 읽을때 병합쎌이 column이름일때 (0) | 2023.04.12 |
dunder와 magic메소드 (0) | 2022.10.11 |
Comments