我想在SQL中选择符合以下条件的行。
表名:
Codes_and_Numbers
我有以下数据集:
Code_Name Num_1 Num_2
A 10 12
A 10 10
A 10 10
B 17 17
B 17 17
B 17 17
B 17 17
C 21 25
C 21 23
我想选择Num_1和Num_2 不相等的行,但是如果在具有相同Code_Name的另一行上,Num_1和Num_2 相等,那么我不会&# 39; t想要选择该Code_Name下的任何行。
在上面的数据集中,这意味着只会选择C的2行。由于A有两行,Num_1和Num_2相等,所有B行都相等。
答案 0 :(得分:0)
您可以使用<item android:state_window_focused="false" android:drawable="@android:color/transparent" />
<!-- Even though these two point to the same resource, have two states so the drawable will invalidate itself when coming out of pressed state. -->
<item android:state_focused="true" android:state_enabled="false" android:state_pressed="true" android:drawable="@color/gray_btn_bg_color" />
<item android:state_focused="true" android:state_enabled="false" android:drawable="@color/gray_btn_bg_color" />
<item android:state_focused="true" android:state_pressed="true" android:drawable="@color/gray_btn_bg_color" />
<item android:state_focused="false" android:state_pressed="true" android:drawable="@color/gray_btn_bg_color" />
<item android:state_focused="true" android:drawable="@color/gray_btn_bg_color" />
:
NOT EXISTS