13
15

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.

【WordPress】データベースアクセス方法

Last updated at Posted at 2014-07-12

値を取得(一行)

hoge.php
$wpdb->get_row("SELECT * FROM table WHERE key = 'value' AND key = 'value'");

値を取得(すべて)

hoge.php
$wpdb->get_results("SELECT * FROM table WHERE key = 'value' AND key = 'value'");

値を更新

hoge.php
$wpdb->get_results( "UPDATE table SET key = key+1 WHERE key = 'value' AND key = 'value'" );

値を追加

hoge.php
$wpdb->insert( 'table', array( 'key' => 'value', 'key' => 'value', 'meta_value' => value ), array( '%s', '%s', '%d' ) );

// %s -> (文字列)
// %d -> (文字列)
// %f -> (浮動小数点数)
13
15
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
13
15

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?