Notice
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- php 시큐어코딩
- UML
- dovecot
- 안드로이드 gcm
- 안드로이드 푸쉬
- html5
- chart.js
- soundpool
- roundcube
- C#
- 폼메일
- PHP
- C# IO
- mysql
- 설치
- WebView
- 안드로이드
- php 취약점
- android 효과음
- 우분투
- FCM
- curl
- not working
- 자동 생성
- 안드로이드 푸시
- xe
- Mail Server
- Android
- javascript
- 자바스크립트
Archives
- Today
- Total
목록convert (2)
그러냐
언어별 형변환 정보 사이트
C - C++ - Objective C - Java - JavaScript - Python - C# - VB - VB.net convert info 각종 언어별 형변환하는 방법 알려주는 사이트 http://www.convertdatatypes.com/Convert-long-to-String-in-Java.html int to float string to int 등등
게시판
2017. 11. 15. 16:11
MSSQL Cast, Convert 함수 사용 테스트
MS-SQL로 작업을 하면서, 다양한 값 변환시, Cast, Convert 함수를 이용한다. 몇가지 변환 방법을 테스트 해 본다. 참조 : http://msdn.microsoft.com/ko-kr/library/ms187928.aspx //////////// CAST 함수 ///////////// 1. 날짜 문자열 -> smalldatetime 형으로 select cast('2009-12-21 10:30:31' as smalldatetime) ----------------------- 2009-12-21 10:31:00 2. datetime->timestamp 형으로; Default Unix time(1970년 1월 1일 부터의 Timestamp) select cast('00:00:00' as times..
mssql
2016. 1. 27. 17:51