문서번호: 20140218-1104 검색어: nabiro, join, example, sample, 예제, 샘플, inner join, outer join 참조 또는 출처: http://www.codinghorror.com/blog/2007/10/a-visual-explanation-of-sql-joins.html 마지막 업데이트: 20201228_2308 Select A.ts_id AS num, A.ts_title AS title, B.[name] + '【 ' + IsNull(B.part, ' ') + ' 】' AS [name], C.[name] AS operator, D.ts_name as comment, bldType = CASE A.ts_bld_Type WHEN 0 THEN 'Y' ELSE 'N'..
/*** 문서번호: nabiro_201208241138* 검색어: nabiro, 저장, 프로시저, 프로시져, 저장 프로시져, sp, stored procedure, sample, 예제, 변수, 두개, 2개, 두개의* 출처: * 참조: **/ exec SP_FIND_SR @title='abc', @srno='S11-1022_OLAS';
/*** 문서번호: nabiro_201208241134* 검색어: nabiro, 저장, 프로시저, 프로시져, 저장 프로시져, sp, stored procedure, sample, 예제* 출처: * 참조: **/ 아래의 사이트를 참조하세요. http://tortoise05.springnote.com/pages/3977643.xhtml http://dotweb.tistory.com/125
*** 검색어: nabiro, teamtrack, mssql, 날짜, 시간, DateAdd, DateDiff teamtrack에서 사용하는 날짜 및 시간 형식은 우리가 일상에서 사용하는 년,월,일,시,분 과 같은 형식이 아니라 단순 정수형 입니다. 그래서 이렇게 저장된 날짜 필드를 우리가 보기 쉬운 날짜, 시간 형태로 바꾸기 위해 참조하는 쿼리를 아래에 저장합니다. 아직 개선이 필요한 쿼리문이지만 단순 참조용으로는 무리가 없습니다. select ts_id, (isnull(convert(varchar(20),DateAdd(ss,(ts_time+32400),'01/01/1970')),'')) from ts_changes
*** MSSQL, MS-SQL, 2000, 2005, Stored Procedure, select, 조회, 목록, 프로시져, 프로시저 SELECT * FROM sysobjects where type='P'