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.
Rails 2.3.8 と PostgreSQL 9.0 で開発しています。IDの最後の数文字で検索したい。
ID「123」を投稿し、「100123」、「200123」、「300123」など、最後の 3 文字に「123」が含まれるレコードを返すと。
IDの最後の文字でレコードを検索するには?
試す
SELECT * FROM USERS WHERE CAST(id AS TEXT) LIKE '%123'
これを参照