Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
こんにちは、agents2というテーブルがあり、次のように構成されています。
agents2 --------------- id , title
table.title の下には、(www/http..etc) を含むレコードがいくつかあります。
title= www.postgre.com
私が見たいのは
title= postgre.com
実行すると一部が削除されるクエリはありますかwww.。ご協力いただきありがとうございます。
www.
SQLite には instr() 関数があります。そう:
instr('title= www.postgre.com','www')
「www」の開始位置を返します。それを部分文字列と連結とともに使用して、必要な値を取得できるはずです。