[MySQL] 'check the manual that corresponds to your MariaDB server version for the right syntax' 해결 방법
Dev/Error
2023. 3. 29. 15:23
문제 발생 MySql.Data.MySqlClient.MySqlException: 'You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near ' ' at line 1' 해결 방법 SQL 문법 ERROR : 올바른 문법을 line 1에서 사용하라는 뜻 작은 따옴표를 제대로 닫지 않아서 발생한 문제 작은 따옴표와 큰 따옴표를 문법에 맞게 설정해 주니 해결됨 Tip near 부분을 명시해 주기에 near ' ' < 작은 따옴표 안에 있는 구문의 문장에서 오류가 났을 확률이 높음