我有这张桌子
ITEM_IDS
int controllerIndex = 1;
UIView * fromView = self.tabBarController .selectedViewController.view;
UIView * toView = [[self.tabBarController.viewControllers objectAtIndex:controllerIndex] view];
// Transition using a page curl.
[UIView transitionFromView:fromView toView:toView duration:0.8
options:(controllerIndex > self.tabBarController.selectedIndex ? UIViewAnimationOptionTransitionCurlUp : UIViewAnimationOptionTransitionCurlDown)
completion:^(BOOL finished) {
if (finished) {
self.tabBarController.selectedIndex = controllerIndex;
}
}];
我想搜索用户输入的完全匹配的记录。例如。如果用户输入数字" 7"结果是id为#" 2" (64,13,52,7,1)和id为" 1" (12,42,71,3)虽然在" 71"中包含7个。
谢谢。
我已经看过This并且它与我想要的不一样。
"项目"(数字)的值不是出于关系目的,谢谢。
答案 0 :(得分:0)
你可以试试这个:
SELECT id FROM item_ids WHERE items LIKE"%7%&#34 ;;