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
- jsp
- STS
- 자바스크립트
- MS-SQL
- Redirect
- Web Service
- Bootstrap
- 컬럼명
- varags
- Eclipse
- TextBox
- Android
- asp.net
- html
- 웹 서비스
- scrollView
- SpringSource Tool Suite
- WebView
- C#
- decompiler
- MANTIS
- 안드로이드
- 이클립스
- javascript
- Apache Lucene
- 자바
- Maven
- Java
- 웹뷰
- MSsql
Archives
- Today
- Total
bboks.net™
MS SQL SUBSTRING 본문
MS SQL의 SUBSTRING은 Java의 String.subString이나 C#의 String.SubString과 동일한 기능을 수행한다.
사용법은
SUBSTRING(target_string, start_index, length)
단, 여기서 주의할 점은 start_index는 0이 아닌 1이상이 되어야 한다는 것!!
즉, MS SQL에서 문자열의 시작 인덱스는 0이 아닌 1이다.