일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Date and Time Functions
- MySQL
- Oracle
- String Functions and Operators
- Tibero
- 전자정부표준프레임워크
- Data and Time Functions
- SVN
- HTTP
- Sring Functions and Operators
- 전자정부 표준프레임워크
- 오라클
- Date and Time Function
- String Function and Operators
- String Functions and Date Operators
- 티베로
- 윈도우
- 방화벽
- Today
- Total
목록전체 글 (213)
웹이야기
MySQL 칼럼 추가 1 ALTER TABLE 테이블 명 ADD COLUMN 칼럼명 CHAR(1) COMMENT '코멘트' ; cs MySQL 칼럼 삭제 1 ALTER TABLE 테이블 명 DROP COLUMN 칼럼명; cs
JSTL : JavaServer Pages Standard Tag Library EL : Expression Language (표현언어) JSTL은 JSP단에 EL과 함께 쓰여 JSP를 덜 복잡하게(자바코드형태가 많이 쓰이는 것보다) 만들어준다. JSTL에는 5개 영역(우리가 대부분 쓰는 JSTL은 버전이 1.1일 것이다.)이 있다. JSTL core JSTL fmt JSTL sql JSTL XML JSTL functios 1, JSTL core 1 cs 위와 같이 상단에 선언이 되어 있어야 하며, prefix 는 임의로 지정이 가능하지만 대부분의 경우 그냥 사용하는 것 같다. 1) catch - Catches any Throwable that occurs in its body and optionally..
https://gbsb.tistory.com/114 스프링 Tiles 3 적용하기 스프링 Apache Tiles는 레이아웃 템플릿 엔진이다. 중복되는 태그를 사용하지 않아도 지정된 페이지 레이아웃에 따라 페이지 타일을 조합하여 완전한 페이지로 만들어준다. Tiles 말고도 Sitemesh도 같 gbsb.tistory.com 위 블로그를 가장 많이 참조하였다. 먼저 Controller 를 생성해서 타일즈를 적용할 URL을 하나 만들어두었다. @RequestMapping("/aaa/bbb/ccc.do") public String sssss() throws Exception{ 블라블라 return "abc/aaa/bbb/ccc"; } 타일즈 적용하기 1. Tiles 라이브러리 추가 pom.xml 에 아래 내용..
HTTP 상태 코드의 첫 번째 자리는 요청이 어떻게 처리되었는지 나타내주는 매우 일반적인 코드로 1부터 5를 사용한다. 1xx : 정보(Information) - 이 응답코드들은 HTTP 클라리언트와 서버 사이에서 연결 협상을 할 때만 사용 2xx : 성공(Successful) 3xx : 리다이렉션(Redirection) 4xx : 클라이언트 오류(Client Error) 5xx : 서버오류(Server Error) 위키에는 1xx (정보): 요청을 받았으며 프로세스를 계속한다 2xx (성공): 요청을 성공적으로 받았으며 인식했고 수용하였다 3xx (리다이렉션): 요청 완료를 위해 추가 작업 조치가 필요하다 4xx (클라이언트 오류): 요청의 문법이 잘못되었거나 요청을 처리할 수 없다 5xx (서버 오류..
CentOS 에서 apm을 간단하게 설치해보고자 한다. MySQL 8.x Apache 2.4 PHP 7 MySQL에 약간의 문제가 있는 것 같아 MySQL 5.7 버전으로 동일하게 설치해도 정상적으로 잘 작동함. 1. MySQL 설치 - MySQL 설치는 아래 URL을 참조한다. https://webobj.tistory.com/5 5. MySQL 설치(리눅스) - 소스 컴파일 MySQL 8.0.18 설치 MySQL 5.7.28 도 동일하게 설치를 진행해도 잘 되었다. 요약본 #yum -y install cmake #yum -y install git #yum -y install openssl #yum -y install openssl-devel #yum -y install libtirpc.. webobj...
MySQL 문자열 함수와 연산자 WEIGHT_STRING() - WEIGHT_STRING(str [AS {CHAR | BINARY} (N)] [flags]) 의 형태 This function returns the weight string for the input string. The return value is a binary string that represents the comparison and sorting value of the string. It has these properties : If WEIGHT_STRING(str1) = WEIGHT_STRING(str2), then str1 = str2(str1 and str2 are considered equal) If WEIGHT_STRING(s..
MySQL 문자열 함수와 연산자 UPPER() - UPPER(str) 의 형태 Returns the string str with all characters changed to uppercase according to the current character set mapping. mysql> SELECT UPPER('Hej'); +--------------+ | UPPER('Hej') | +--------------+ | HEJ | +--------------+ 1 row in set (0.00 sec) UCASE() webobj.tistory.com/208 [MySQL]UCASE() MySQL 문자열 함수와 연산자 UCASE() - UCASE(str) 의 형태 UCASE() is a synonym for..
MySQL 문자열 함수와 연산자 UNHEX() - UNHEX(str) 의 형태 For a string argument str, UNHEX(str) interprets each pair of characters in the argument as a hexadecimal number and covnerts it to the byte represented by the number. The return value is a binary string. mysql> SELECT UNHEX('4D7953514C'); +---------------------+ | UNHEX('4D7953514C') | +---------------------+ | MySQL | +---------------------+ 1 row in..
MySQL 문자열 함수와 연산자 UCASE() - UCASE(str) 의 형태 UCASE() is a synonym for UPPER(). UCASE() used within views is rewritten as UPPER(). UPPER() webobj.tistory.com/210 [MySQL]UPPER() MySQL 문자열 함수와 연산자 UPPER() - UPPER(str) 의 형태 Returns the string str with all characters changed to uppercase according to the current character set mapping. mysql> SELECT UPPER('Hej').. webobj.tistory.com
MySQL 문자열 함수와 연산자 TRIM() - TRIM([{BOTH | LEADING | TRAILING} [remstr] FROM] str) TRIM([remstr FROM] str) 의 형태 Returns the string str with all remstr prefixes or suffixes removed. If none of the specifiers BOTH, LEADING, or TRAILING is given, BOTH is assumed. remstr is optional and, if not specified, spaces are removed. mysql> SELECT TRIM(' bar '); +-------------------+ | TRIM(' bar ') | +-------..
MySQL 문자열 함수와 연산자 TO_BASE64() - TO_BASE64(str) 의 형태 Converts the string argument to base-64 encoded form and returns the result as a character string with the connection character set and collation. If the argument is not a string, it is converted to a string before conversion takes place. The result is NULL if the argument is NULL. Base-64 encoded strings can be docoded using the FROM_BASE64() ..
MySQL 문자열 함수와 연산자 SUBSTRING_INDEX() - SUBSTRING_INDEX(str, delim, count) 의 형태 Returns the substring from strikng str before count occurences of the delimiter delim. If count is positive, everything to the left of the final delimiter(counting from the left) is returned. If count is negative, everything to the right of the final delimter(counting from the right) is returned. SUBSTRING_INDEX() perf..
MySQL 문자열 함수와 연산자 SUBSTRING() - 문자열 자르기 정도 ? SUBSTRING(str, pos) SUBSTRING(str FROM pos) SUBSTRING(str, pos, len) SUBSTRING(str FROM pos FOR len) 의 형태 The forms without a len argument return substring from string str starting at position pos. The forms with a len argument return a substring len characters long from string str, starting at postion pos. The forms that use FROM are standard SQL syn..
MySQL 문자열 함수와 연산자 SUBSTR() - 문자열 자르기 정도 ? SUBSTR(str, pos) SUBSTR(str FROM pos) SUBSTR(str, pos, len) SUBSTR(str FROM pos FOR len) 의 형태 SUBSTR() is a synonym for SUBSTRING().
MySQL 문자열 함수와 연산자 SPACE() - SPACE(N) 의 형태 Returns a string consisting of N space characters. mysql> SELECT SPACE(6) ; +----------+ | SPACE(6) | +----------+ | | +----------+ 1 row in set (0.00 sec) mysql>
MySQL 문자열 함수와 연산자 RTRIM() - 문자열 뒷부분의 공백 제거 RTRIM(str) 의 형태 Returns the string str with trailing space characters removed. mysql> SELECT RTRIM('abcde '); +------------------+ | RTRIM('abcde ') | +------------------+ | abcde | +------------------+ 1 row in set (0.00 sec)
MySQL 문자열 함수와 연산자 RPAD() - RPAD(str, len, padstr) 의 형태 Returns the string str, right-padded with the string padstr to a length of len characters. If str is longer than len, the return value is shortened to len characters. mysql> SELECT RPAD('hello', '10', '?' ); +---------------------------+ | RPAD('hello', '10', '?' ) | +---------------------------+ | hello????? | +---------------------------+ ..
MySQL 문자열 함수와 연산자 RIGHT() - 가장 오른쪽부터 주어진 길이의 문자열을 구하는 함수 RIGHT(str, len) 의 형태 Returns the rightmost len characters from the string str, or NULL if any argument is NULL. mysql> SELECT RIGHT('abcdef', 3); +--------------------+ | RIGHT('abcdef', 3) | +--------------------+ | def | +--------------------+ 1 row in set (0.00 sec)
MySQL 문자열 함수와 연산자 REVERSE() - REVERSE(str) 의 형태 Returns the string str with the order of the characters reversed. mysql> SELECT REVERSE('abcd'); +-----------------+ | REVERSE('abcd') | +-----------------+ | dcba | +-----------------+ 1 row in set (0.00 sec)
MySQL 문자열 함수와 연산자 REPLACE() - 문자열 치환 REPLACE(str, from_str, to_str) 의 형태 Returns the string str with all occurences of the string from_str replaced by string to_str. REPLACE() performs a case-sensitive match when searching for from_str. mysql> SELECT REPLACE('오늘은 검색 오늘은', '오늘은', '내일은'); +-----------------------------------------------------------------+ | REPLACE('오늘은 검색 오늘은', '오늘은', '내일은') | +-..