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
- git push
- xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools)
- Swift
- 콜미동구
- MySQL
- 줄거리
- git
- java
- Mac
- 클라우드 서비스
- 자바스크립트
- 기록하는 동구
- 한줄평
- Xcode
- 서평
- 파이썬 웹크롤링
- 깃
- 클라우드 서비스 특징
- SpringBoot
- 에러
- JavaScript
- 동구
- 오류
- Mapper
- missing xcrun at: /Library/Developer/CommandLineTools/usr/bin/xcrun
- 데이메이커
- 독후감
- 책
- spring
- 자바 파일업로드
Archives
- Today
- Total
인생은 속도가 아니라 방향이다
[MySQL] MySQL 8.0 server version reserved words 오류 (테이블명) 본문
반응형
MySQL 시스템상 안에 이미 약속된 몇가지 이름들이 있는것같다.
나같은 경우에는 테이블명이 order였는데 아주 기본적인 select문도 되지않아서 오류를 확인해 보았다. 오류는 다음과 같다.
You hava an error in your SQL syntax; check the manual taht corresponds to your MySQL server version for the right syntax to use near 'order'
이게 아니라면
Select is not valid at this position for this server version, expecting '(', with
MySQL 버전업 되면서 나타나는 에러 같은데 여기로 들어가게되면 reserved words를 볼수있다.
https://dev.mysql.com/doc/refman/8.0/en/keywords.html
해결책 : 그 해당 reserved word 양쪽에 Esc키 바로밑에 있는 ` 요 키를 눌러주면 된다. ex) select * from `order`그럼 실행이 잘되는걸 볼수있다.
반응형
'데이터베이스 > MySQL' 카테고리의 다른 글
[MySQL] ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2) 에러 (0) | 2020.08.07 |
---|---|
[MySQL] UNSIGNED 의미, 언제 사용해야할까? (1) | 2020.02.04 |
Comments