0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

SQLBuilderの仕様を考える DELETE仕様検討編

Posted at

目的

GolangのSQLBuilerを作ってみたくて、仕様を考える。
今回はDELETE文の仕様を考える。また、TRUNCATEも併せて考える。

目指す形

ここではusersというTableに対応したUserというTableモデル構造体がある場合とする。
宣言としては、

CREATE TABLE users (
  id int,
  name varchar(10)
)

CREATE TABLE tokens (
  id int,
  user_id int REFERENCES users.id,
  token varchar(10)
)

を想定する

DELETE

パッケージ名は仮でpkとして

pk.DELETE(pk.Table("users"))

// DELETE FROM users

とすることを考えている。

WHERE句の利用は

pk.DELETE(pk.Table("users")).WHERE(pk.Eq("users.id"), 1)

// DELETE FROM users WHERE users.id = 1

を考えており、WHERE句としてはSELECT文と同じ

TRUNCATE

パッケージ名は仮でpkとして

pk.TRUNCATE(pk.Table("users"))

// TRUNCATE TABLE users
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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?