Re: ACFinder テスト中
OhYeah!
投稿数: 983
オンライン

下記 URL に spec.bunrui 更新クエリーを公開しました。ACFinder もこちらを取得するようにしてください。
http://macs.o-ya.net/data/spec.bunrui.qry
なお、データ更新と spec.bunrui.qry の更新が同時の場合は、先に spec.bunrui.qry を実行してからデータ更新すれば OK です。spec.bunrui.qry のみ更新された場合は、spec.bunrui.qry 実行後に m_kihon テーブルの koka フィールドの更新をするようにしてください。
m_kihon 更新サンプル
http://macs.o-ya.net/data/spec.bunrui.qry
なお、データ更新と spec.bunrui.qry の更新が同時の場合は、先に spec.bunrui.qry を実行してからデータ更新すれば OK です。spec.bunrui.qry のみ更新された場合は、spec.bunrui.qry 実行後に m_kihon テーブルの koka フィールドの更新をするようにしてください。
m_kihon 更新サンプル
--/d
drop table if exists t_kihon;
create temp table t_kihon as select bango, seibun1, seibun2, seibun3, seibun4, seibun5, '' as koka, 0 as kokaid0, 0 as kokaid1, 0 as kokaid2, 0 as kokaid3, 0 as kokaid4, 0 as kokaid5 from m_kihon;
update t_kihon set kokaid1 = (select kokaid from spec.bunrui where seibun1 = seibun) where ifnullstr(seibun1, '') <> '';;
update t_kihon set kokaid2 = (select kokaid from spec.bunrui where seibun2 = seibun) where ifnullstr(seibun2, '') <> '';
update t_kihon set kokaid3 = (select kokaid from spec.bunrui where seibun3 = seibun) where ifnullstr(seibun3, '') <> '';
update t_kihon set kokaid4 = (select kokaid from spec.bunrui where seibun4 = seibun) where ifnullstr(seibun4, '') <> '';
update t_kihon set kokaid5 = (select kokaid from spec.bunrui where seibun5 = seibun) where ifnullstr(seibun5, '') <> '';
update t_kihon set kokaid0 = kokaid1 | kokaid2 | kokaid3 | kokaid4 | kokaid5;
update t_kihon set kokaid0 = (select kokaid from spec.koka where koka = '展着') where kokaid0 = 0;
update t_kihon set koka = concat('・',
(select koka from spec.koka where kokaid = kokaid0 & 3),
(select koka from spec.koka where kokaid = kokaid0 & 4),
(select koka from spec.koka where kokaid = kokaid0 & 8),
(select koka from spec.koka where kokaid = kokaid0 & 16),
(select koka from spec.koka where kokaid = kokaid0 & 32),
(select koka from spec.koka where kokaid = kokaid0 & 64),
(select koka from spec.koka where kokaid = kokaid0 & 128),
(select koka from spec.koka where kokaid = kokaid0 & 256),
(select koka from spec.koka where kokaid = kokaid0 & 512),
(select koka from spec.koka where kokaid = kokaid0 & 1024),
(select koka from spec.koka where kokaid = kokaid0 & 2048),
(select koka from spec.koka where kokaid = kokaid0 & 4096),
(select koka from spec.koka where kokaid = kokaid0 & 8192),
(select koka from spec.koka where kokaid = kokaid0 & 16384),
(select koka from spec.koka where kokaid = kokaid0 & 32768)
);
update m_kihon set koka = (select koka from t_kihon where bango = m_kihon.bango);
drop table if exists t_kihon;
投票数:4
平均点:5.00
投稿ツリー
-
ACFinder テスト中 (kabe, 2011.01.03 22:01)
-
Re: ACFinder テスト中 (OhYeah!, 2011.01.04 01:21)
-
Re: ACFinder テスト中 (OhYeah!, 2011.01.04 02:18)
-
Re: ACFinder テスト中 (OhYeah!, 2011.01.04 13:11)
-
-
Re: ACFinder テスト中 (OhYeah!, 2011.01.04 10:18)
-
Re: ACFinder テスト中 (OhYeah!, 2011.01.04 15:15)
-
Re: ACFinder テスト中 (OhYeah!, 2011.01.04 18:12)
-
Re: ACFinder テスト中 (kabe, 2011.01.04 20:34)
-
Re: ACFinder テスト中 (OhYeah!, 2011.01.04 22:38)
-
Re: ACFinder テスト中 (OhYeah!, 2011.01.05 17:48)
-
-
-
Re: ACFinder テスト中 (kabe, 2011.01.04 23:09)
-
Re: ACFinder テスト中 (OhYeah!, 2011.01.05 02:16)
-
Re: ACFinder テスト中 (kabe, 2011.01.05 07:15)
-
Re: ACFinder テスト中 (OhYeah!, 2011.01.05 17:22)
-
-
-
-
Re: ACFinder テスト中 (OhYeah!, 2011.01.06 21:42)
-
Re: ACFinder テスト中 (OhYeah!, 2011.01.07 14:35)
-
Re: ACFinder テスト中 (OhYeah!, 2011.01.09 03:29)
-
Re: ACFinder テスト中 (kabe, 2011.01.09 10:53)
-
Re: ACFinder テスト中 (OhYeah!, 2011.01.09 14:38)
-
-
Re: ACFinder テスト中 (kabe, 2011.01.09 14:04)
-
Re: ACFinder テスト中 (kabe, 2011.01.09 14:14)
-
Re: ACFinder テスト中 (OhYeah!, 2011.01.09 14:54)
-
-
Re: ACFinder テスト中 (OhYeah!, 2011.01.09 17:08)
-
Re: ACFinder テスト中 (kabe, 2011.01.09 22:22)
-
Re: ACFinder テスト中 (OhYeah!, 2011.01.09 23:54)
-
Re: ACFinder テスト中 (OhYeah!, 2011.01.10 02:07)
-
Re: ACFinder テスト中 (kabe, 2011.01.10 21:06)
-
Re: ACFinder テスト中 (OhYeah!, 2011.01.10 21:36)
-
/u オプションは大丈夫? (OhYeah!, 2011.01.22 23:37)
-
Re: /u オプションは大丈夫? (kabe, 2011.01.23 20:24)
-
Re: /u オプションは大丈夫? (OhYeah!, 2011.01.23 22:49)
-
-
-
-
-
Re: ACFinder テスト中 (OhYeah!, 2011.01.10 00:51)
-
Re: ACFinder テスト中 (OhYeah!, 2011.01.10 02:05)
-
-
-
-
-
検索結果の作物名・病害虫の並べ替え (OhYeah!, 2011.02.10 16:30)
-
Re: 検索結果の作物名・病害虫の並べ替え (kabe, 2011.02.11 20:59)
-
Re: 検索結果の作物名・病害虫の並べ替え (OhYeah!, 2011.02.11 22:24)
-
-
-