2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Perlヒアドキュメント

Last updated at Posted at 2017-08-05

Perlのヒアドキュメントメモ

SQL生成でよく使うなれないperlでよくはまるのでメモ

my $id=1;

my $sql = << "SQL";
select *
from table_a
where id=$id
;
SQL

print $sql;
  • SQLの文字列は自由に決められる(EOFなどでもOK)
  • SQLをダブルコーテーションで括ると変数が展開できる
  • "SQL"の後ろにセミコロンが必要

この記事が詳しい
http://perl-users.jp/articles/advent-calendar/2008/14.html

2
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?