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 | 31 |
Tags
- 최성재
- 우한코로나바이러스
- 우한 코로나
- Bolton
- cnn
- 웨일즈
- 중국외교부
- 신종코로나
- 조현병
- 정은경 본부장님
- parasite
- 봉준호감독통역
- 필리핀사망
- red hearse
- 우한
- 코로나
- 미중
- 코로나바이러스
- 창궐
- 확진자수
- wuhan
- sharonchoi
- 코로나19
- 우한코로나
- 전염병
- everybody wants you
- 진짜영웅
- 봉준호감독통역사
- 치앙마이
- 어서와한국은처음이지
Archives
- Today
- Total
오지's blog
쿼리 수행시 ValueError: unsupported format character 'I' (0x49) at index 69 에러 해결방안 본문
개발노트/Python
쿼리 수행시 ValueError: unsupported format character 'I' (0x49) at index 69 에러 해결방안
잡스러운노트, 잡스노트 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