LoginSignup
0
0

More than 3 years have passed since last update.

[A5:SQL Mk-2]テクニック備忘録

Posted at

はじめに

毎回、忘れてしまうので時間の無駄を無くすため。
覚えることはしない。

SetParameter(セットパラメータ)

--パラメータセット
/**
 SetParameter aaa 'AAA' String
 SetParameter bbb 2 Integer
*/

SELECT * FROM TBL1 WHERE col1 = :aaa OR col1 = :bbb
文字列
文字列型 String
整数型 Integer
実数型 Float
論理値型 Boolean
日付型 Date
時刻型 Time
日付/時刻型 DateTime

・実数型、論理値型、日付型、時刻型、日付/時刻型については使ったことがない。

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