差分

このページの2つのバージョン間の差分を表示します。

この比較画面にリンクする

次のリビジョン
前のリビジョン
blog:2020:0925_検索ワード [2020/09/25 15:58]
kijima 作成
blog:2020:0925_検索ワード [2020/09/25 16:05] (現在)
kijima [メンテ用]
行 1: 行 1:
 ====== 検索ワード ====== ====== 検索ワード ======
  
-   +===== 取得 =====
-   +
-  select distinct search from books order by lower(search);+
  
 +  * 大文字小文字を区別せずソート
 +
 +  select distinct search from books order by lower(search);
  
 ===== メンテ用 ===== ===== メンテ用 =====
 +
   * 小文字へ変換   * 小文字へ変換
 +
   update books set search = lower(search)   update books set search = lower(search)
 +
   * 文字列変換   * 文字列変換
 +
   update books set url=replace(url, "word_from", "word_to");   update books set url=replace(url, "word_from", "word_to");
  
  
blog/2020/0925_検索ワード.1601017117.txt.gz · 最終更新: 2020/09/25 15:58 by kijima