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
- two pointers
- 자바
- Class
- bit manipulation
- Number Theory
- Math
- 구현
- Data Structure
- Stack
- 파이썬
- 코테
- Binary Search
- implement
- database
- Binary Tree
- dynamic programming
- sorting
- Matrix
- SQL
- Method
- 코딩테스트
- simulation
- hash table
- array
- java
- Counting
- greedy
- string
- geometry
- Tree
Archives
- Today
- Total
목록error (2)
코린이의 소소한 공부노트
[MySQL] 내가 겪은 오류 모음
# 'cp949' codec can't decode byte (숫자) - 엑셀 파일을 csv형태로 저장한 후 MySQL에 import할 때 발생하는 오류 - 엑셀 파일을 csv로 저장할 때 uft-8로 저장하지 말고 일반 csv로 저장한 다음 import하면 된다. # every derived table must have its own alias - 서브 쿼리에 이름을 짓지 않아서 발생하는 오류 - ( ) 끝에 별명을 붙여줘야 한다.
Back-End
2023. 3. 16. 16:59

코딩을 하다 보면 오류를 가끔(아니고 매번) 마주치게 된다. 오류의 종류는 크게 3가지로 나눌 수 있다. 1. 컴파일 에러(compile-time error) // 구문체크 - 문법에 맞는지 확인 system.out.println(); // 맨 앞 s가 소문자 // Exception in thread "main" // java.lang.Error: Unresolved compilation problem: // system cannot be resolved System.out.println(); // OK // 최적화 int i = 3+5; // 우리가 이렇게 써놓으면 // int i = 8; // 컴파일러가 자동으로 8로 계산해 i에 대입해줌 // 생략된 코드 추가 예시 - 기본 생성자 추가 class ..
Java
2022. 5. 19. 23:38