반응형

SELECT DATE_FORMAT("2017-06-15""%Y");


Syntax

DATE_FORMAT(dateformat)


Parameter Values

ParameterDescription
dateRequired. The date to be formatted
formatRequired. The format to use. Can be one or a combination of the following values:
FormatDescription
%aAbbreviated weekday name (Sun to Sat)
%bAbbreviated month name (Jan to Dec)
%cNumeric month name (0 to 12)
%DDay of the month as a numeric value, followed by suffix (1st, 2nd, 3rd, ...)
%dDay of the month as a numeric value (01 to 31)
%eDay of the month as a numeric value (0 to 31)
%fMicroseconds (000000 to 999999)
%HHour (00 to 23)
%hHour (00 to 12)
%IHour (00 to 12)
%iMinutes (00 to 59)
%jDay of the year (001 to 366)
%kHour (0 to 23)
%lHour (1 to 12)
%MMonth name in full (January to December)
%mMonth name as a numeric value (00 to 12)
%pAM or PM
%rTime in 12 hour AM or PM format (hh:mm:ss AM/PM)
%SSeconds (00 to 59)
%sSeconds (00 to 59)
%TTime in 24 hour format (hh:mm:ss)
%UWeek where Sunday is the first day of the week (00 to 53)
%uWeek where Monday is the first day of the week (00 to 53)
%VWeek where Sunday is the first day of the week (01 to 53). Used with %X
%vWeek where Monday is the first day of the week (01 to 53). Used with %X
%WWeekday name in full (Sunday to Saturday)
%wDay of the week where Sunday=0 and Saturday=6
%XYear for the week where Sunday is the first day of the week. Used with %V
%xYear for the week where Monday is the first day of the week. Used with %V
%YYear as a numeric, 4-digit value
%yYear as a numeric, 2-digit value

출처 : https://www.w3schools.com/sql/func_mysql_date_format.asp

반응형
반응형

[자바스크립트(javascript)] null check, 널 체크 



자바스크립트 자료형에서 false로 반환되는 값은

"", null, undefined, 0, NaN 이 있고

나머지는 모두 true


그렇기에 아래의 확인 방법으로 진행


// 넘어온 값이 빈값인지 체크합니다. 
// !value 하면 생기는 논리적 오류를 제거하기 위해
// 명시적으로 value == 사용
// [], {} 도 빈값으로 처리
var isEmpty = function (value) {
if (value == "" || value == null || value == undefined || (value != null && typeof value == "object" && !Object.keys(value).length)) {
return true
} else {
return false
}
};


출처: http://sanghaklee.tistory.com/3 [이상학의 개발블로그]

반응형
반응형

자바스크립트(javascript) 문자(String)을 숫자(Number)로 변환


Number to String = String()

String to Number = Number()



소스 출처: https://blog.outsider.ne.kr/361

// 숫자를 스트링로 바꾸기

var tt = 2

alert(typeof tt);    // Result : number

tt = String(tt);

alert(typeof tt);    // Result : string

 

// 스트링을 숫자로 바꾸기

tt = "2"

alert(typeof tt);    // Result : string

tt = Number(tt);

alert(typeof tt);    // Result : number

반응형
반응형

장고란 무엇인가요?

Django(/dʒæŋɡoʊ/ jang-goh/쟁고/장고)는 파이썬으로 만들어진 무료 오픈소스 웹 애플리케이션 프레임워크(web application framework)입니다. 쉽고 빠르게 웹사이트를 개발할 수 있도록 돕는 구성요소로 이루어진 웹 프레임워크랍니다.

웹사이트를 구축할 때, 비슷한 유형의 요소들이 항상 필요합니다. 회원가입, 로그인, 로그아웃과 같이 사용자 인증을 다루는 방법이나 웹사이트의 관리자 패널, 폼, 파일 업로드와 같은 것들 말이지요.

그런데 정말 다행이게도, 오래전에 어떤 웹 개발자들이 새로운 웹 사이트를 개발할 때 서로 비슷한 문제들에 직면한다는 것을 깨달았습니다. 그래서 팀을 조직했고요. 바로 사용할 수 있는 구성요소들을 갖춘 여러 프레임워크를 만들었답니다. 장고도 그중에 하나인 거죠. 다시 발명해야 하는 문제로부터 해방감을 주고요. 새로운 웹사이트를 개발할 때 뒤따르는 간접비용의 부담을 덜어준답니다.



간단히 말해 자바 기반으로는 스프링이 있다면 

파이썬 기반의 프레임워크 중 하나 인것 같다. 

다만 장고의 경우 더 나아가 회원가입, 로그인, 로그아웃, 관리자(ADMIN) 기능 까지 기본적으로 제공하는 것으로 보인다.


출처: https://tutorial.djangogirls.org/ko/django/

반응형

+ Recent posts