• 内容へ移動

fl8 Wiki

ユーザ用ツール

  • ログイン

サイト用ツール

  • 最近の変更
  • メディアマネージャー
  • サイトマップ
現在位置: Dokuwiki.fl8.jp » id
トレース: • 12 HP Proliant PD障害テスト • 75 Proftpd • 01 JuJu Maas Openstack • Operation not permitted 削除できないファイル • ps • 61 CentOS OpenVPNトンネル接続 • 10 fsckでエラー • 21 Ceph マニュアルインストール • 62 Adaptechでディスク交換 • 02_ネットワーク負荷試験iperf

id

検索

以下に検索結果を表示します。

後方一致
  • 完全一致
  • 前方一致
  • 後方一致
  • 部分一致
@02_freebsd:04_database
  • 全ての名前空間
  • 02_freebsd:04_database:01_mysql (10)
  • 02_freebsd:04_database:02_posgresql (3)
  • 02_freebsd:04_database:03_sqlite (1)
全期間
  • 全期間
  • 1週間以内
  • 1カ月以内
  • 1年以内
ヒット数順に並べる
  • ヒット数順に並べる
  • 最終更新順に並べる

全文検索:

11 ERROR:1093を回避 @02_freebsd:04_database:01_mysql
11 ヒット, 最終更新: 11年前
ない <code console> update hoge set code = 0 where id IN (select id from hoge as tmp where id = 1 group by id order by id) ; ERROR 1093 (HY000): You can't specify target table 'hoge' for update
LEFT JOIN、INNER JOIN違い @02_freebsd:04_database:01_mysql
10 ヒット, 最終更新: 12年前
e> mysql> SELECT * FROM table1; +------+------+ | id | name | +------+------+ | 1 | A | | ... e> mysql> SELECT * FROM table2; +------+------+ | id | name | +------+------+ | 1 | A | | ... > select * from table1 LEFT JOIN table2 ON table1.id=table2.id; +------+------+------+------+ | id | name | id | name | +------+------+------+------+
PostgreSQLコマンド @02_freebsd:04_database:02_posgresql
9 ヒット, 最終更新: 3年前
s=# select * from pg_shadow ; usename | usesysid | usecreatedb | usesuper | usecatupd | ... ===== PostgreSQLでのゼロパディング ===== # select lpad(id,4,'0') as id from t_images order by id desc; こんな感じで表示される <code> id ------ 0017 0015 0014 0012 0011
MySQL - 数値に変換してソート @02_freebsd:04_database:01_mysql
6 ヒット, 最終更新: 13年前
とこのようになってしまいます。 <code console> mysql> select disk_id,backup_size from backups order by backup_size desc; +---------+-------------+ | disk_id | backup_size | +---------+-------------+ | ... して、無理やり数値へ変換する。 <code console> mysql> select disk_id,backup_size from backups order by backup_size + 0 desc; +---------+-------------+ | disk_id | backup_size | +---------+-------------+ | 39
MySQLコマンド @02_freebsd:04_database:01_mysql
5 ヒット, 最終更新: 2カ月前
==== テーブル作成 ==== <code> CREATE TABLE hoge_tbl ( id int PRIMARY KEY AUTO_INCREMENT, name text ); </co... -----+---------+------+-----+---------+-------+ | id | int(11) | NO | PRI | NULL | | | ... -----+---------+------+-----+---------+-------+ | id | int(11) | NO | PRI | NULL | | | ... ortbld-freebsd6.3 (i386) using 5.2 Connection id: 104553 Current database: syslog
MySQL - シェルで枠まで出力する @02_freebsd:04_database:01_mysql
3 ヒット, 最終更新: 8年前
estdb -e 'select * from table1' +------+------+ | id | name | +------+------+ | 1 | A | | ... select * from table1' > /tmp/aaa # cat /tmp/aaa id name 1 A 2 B 3 C 4 D 5 E 6 F </code> たまにこの枠も欲しい... e1' > /tmp/aaa # cat /tmp/aaa +------+------+ | id | name | +------+------+ | 1 | A | |
MySQL - レプリケーション @02_freebsd:04_database:01_mysql
3 ヒット, 最終更新: 13年前
の記述があるか確認して下さい。 <code> [mysqld] log-bin server-id=1 </code> <color red>※server-id は、1以上の整数であれば何でも良いです。</color> ===== テーブルへの書き込みを禁止 ===== mysql> FLU... vf data.tar.gz ==== my.cnf設定 ==== <code> server-id = 2 master-host = 172.16.8.53 master-
ApacheのBasic認証でPostgreSQLを参照 @02_freebsd:04_database:02_posgresql
3 ヒット, 最終更新: 13年前
password Auth_PG_pwd_table user_data Auth_PG_uid_field user_name Auth_PG_pwd_field passwd Auth... Authtype Basic <Limit POST GET> require valid-user </Limit> <Directory> </code> これは、ごく単純な... を用いる。 Auth_PG_pwd_table user_data Auth_PG_uid_field user_name Auth_PG_pwd_field passwd この3
01 MySQL インデックス @02_freebsd:04_database:01_mysql
2 ヒット, 最終更新: 7年前
mysql> create table cloudstack_domain_resource( id int not null auto_increment, name text n... null created_at datetime not null, primary key (id), key index_date(created_at), key index_domain(
18 MySQLでALTER TABLEの進捗確認 @02_freebsd:04_database:01_mysql
2 ヒット, 最終更新: 6年前
そ106分くらいで終わるという計算になる。 <code> mysql> select count(id) from test_table; +------------+ | count(id) | +------------+ | 1273517123 | +------------+ 1 row in
IPアドレス-アドレスナンバー @02_freebsd:04_database:01_mysql
2 ヒット, 最終更新: 12年前
バー ====== INET_NTOA <code console> mysql> select id,inet_ntoa(ip_number) from ip_addresses; +------+----------------------+ | id | inet_ntoa(ip_number) | +------+--------------
MySQL - PHPMyAdmin @02_freebsd:04_database:01_mysql
2 ヒット, 最終更新: 13年前
tring --enable-mbstr-enc-trans \ --enable-trans-sid --enable-versioning --enable-gd-native-ttf --enab... Your Password" AuthType Basic Require valid-user </code> ===== パスワードファイルの作成 ===== <code> # h
文字化けする場合 @02_freebsd:04_database:02_posgresql
1 ヒット, 最終更新: 13年前
なる。 ===== <code> | w_flg | i_id | w_upd | w_delflg ------+----------------
SQLiteコマンド @02_freebsd:04_database:03_sqlite
1 ヒット, 最終更新: 11カ月前
rootpage = 4 sql = CREATE TABLE buy( id INTEGER PRIMARY KEY, code int, na

ページ用ツール

  • 文書の表示
  • 以前のリビジョン
  • バックリンク
  • 文書の先頭へ
特に明示されていない限り、本Wikiの内容は次のライセンスに従います: CC Attribution-Noncommercial-Share Alike 4.0 International
CC Attribution-Noncommercial-Share Alike 4.0 International Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki