'데이터 형식 text 및 varchar이(가) add 연산자에서 호환되지 않습니다.'에 해당되는 글 1건
Loading…
2016.05.30
-- create temporary table create table #temp (seq int identity(1,1), note text) -- insert dummy data insert into #temp(note) select 'This is text dataType data!' -- Error select seq , note , note+' add varchar dataType.' as add_note from #temp -- Success select seq , note , convert(text, convert(varchar(max),note)+' add varchar dataType.') as add_note from #temp
▶ Error 인 경우
▶ Success 인 경우
'Database > MSSQL' 카테고리의 다른 글
[MSSQL] 사용자정의함수(User-defined Functions)(UDFs) (0) | 2017.01.07 |
---|---|
[MSSQL]SET Statements vol2 (0) | 2016.06.15 |
[MSSQL] 특정 필드 Update 시 Trigger 작동 (0) | 2016.03.23 |
[MSSQL]StoredProcedure SET Statements (0) | 2016.02.16 |
MS SQL Server Management Studio 단축키 모음 (0) | 2016.02.02 |