2008-09-12から1日間の記事一覧

自作コードスニペット

コードスニペットを自作してみた。 雛形として元々用意されているsnippetを利用した。 hg.snippet <CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet"> <CodeSnippet Format="1.0.0"> <Header> <Title>IF文のサンプル</Title> <Author>haradago</Author> <Description>気分転換に使ってください。</description></header></codesnippet></codesnippets>

Merge文

Sql Server 2008からの新機能。(oracleは9iからサポート) 以下、変数を使用したサンプル。 declare @wk_year char(4) = '2009' declare @wk_name char(10) = '商品D' declare @wk_money numeric = 666 MERGE hoge --更新を行う表を指定 Using (select '' as …