我的数据库中有通知表,其中包含数据类型为TEXT的元数据字段。 以下是我的通知表的一条记录
#<Notification id: 1863, target_type: "User", target_id: 8, object_type: nil, object_id: nil, read: true, metadata: {:title=>"test user sent you a message. Read it now!", :description=>"Dear user, You've received a new chat from test user. Tap here to check!", :notification_type=>"chat", :sender_id=>7, :receiver_id=>8, :name=>"Shyam fb", :img_url=>"http://s3-eu-west-2.amazonaws.com/moodit-prod/avatars/images/000/000/001/original/image.jpg"}, created_at: "2019-03-27 13:01:48", updated_at: "2019-03-27 13:05:03">
一个记录元数据值如下所示
metadata: {
:title=>"test user sent you a message. Read it now!",
:description=>"Dear user, You've received a new chat from test user. Tap here to check!",
:notification_type=>"chat",
:sender_id=>7,
:receiver_id=>8,
:name=>"Shyam fb",
:img_url=>"demo image url"
}
如果我可以得到值7
User.find(8).notifications.last.metadata[:sender_id]
我要查找包含字符串sender_id=>7
的元数据记录。
我尝试了以下查询,但没有成功
User.find(8).notifications.where("metadata LIKE ? ", "%#{sanitize_sql_like(:sender_id=>7)}%" )
User.find(8).notifications.where("metadata LIKE ? ESCAPE'=' ", "%sender_id=>7".gsub('=', '!=').gsub('>', '!>') + '%')
User.find(8).notifications.where("metadata LIKE LOWER(E'sender_id=>7%')")
如何通过LIKE查询实现这一目标?
答案 0 :(得分:0)
如果有人将来遇到此类问题,我设法进行了查询,他们可以使用以下查询从文本数据类型中查找记录。
User.find(8).notifications.where("position(':sender_id: ?' in metadata) != 0", 7)