아는 것이 좋은 것이다.

[DB] text타입 조회, 업데이트시 타입변경 본문

DB

[DB] text타입 조회, 업데이트시 타입변경

start0 2014. 5. 26. 11:49
select * from item where item_note = '' 

select * from item where convert(varchar(max),item_note) = ''

text일경우 아래 처럼 데이터 타입을 변환하면 쿼리 가능

Comments