스트링과 관련된 재밌는 쿼리

  • Post author:
  • Post category:
  • Post comments:0 Comments
  • Post last modified:May 4, 2004

1.
declare @tstr char(10)

1.1
set @tstr = ‘wow’
set @tstr = @tstr + ‘good’
select @tstr
1.2
set @tstr = ‘wow’
select @tstr +‘good’
select rtrim(@tstr) + ‘good’

2.
declare @tstr varchar(10)

2.1
set @tstr = ‘wow’
set @tstr = @tstr + ‘good’
select @tstr

2.2
set @tstr = ‘wow’
select @tstr +‘good’

한번 차례대로 실행시켜 보고, 비교해보세요.

Author Details
Kubernetes, DevSecOps, AWS, 클라우드 보안, 클라우드 비용관리, SaaS 의 활용과 내재화 등 소프트웨어 개발 전반에 도움이 필요하다면 도움을 요청하세요. 지인이라면 가볍게 도와드리겠습니다. 전문적인 도움이 필요하다면 저의 현업에 방해가 되지 않는 선에서 협의가능합니다.
0 0 votes
Article Rating
Subscribe
Notify of
guest

This site uses Akismet to reduce spam. Learn how your comment data is processed.

0 Comments
Inline Feedbacks
View all comments