11
7

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.

複数行に渡ったクエリを実行する

Posted at

コンソールからクエリを実行するとき、複数行にわたったSQLを実行したい。
普通にdb2コンソールを開くと改行をトリガーとしてSQLを実行してしまうのが厄介なのです。

こんなSQL。

select 
  id as member_id,
  sales_slip_id
from 
  sales_data
where
  create_time > '2014-01-01-00.00.00.000000'

調べたところ、コンソールからdb2ダイアログを起動するときに、「-t」オプションを指定すればよいぽい。

db2 -t

これで、改行があっても、「;」が出るまでは1クエリとして扱ってくれました。
やったー!

11
7
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
11
7

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?