假设我有列col1
, col2
, col3
, col4
inmyTable
并且我需要打印出只有一列独有的值 。
所以如果上面看起来像
col1 col2 col3 col4
s e c b
c c a s
n s e a
d d q c
那么输出应该是n, qb因为它们分别只对col1
,col3
和是专有的col4
。
如何通过 mysql php 中的查询来实现这一点?
编辑重复项不必在一行中。我现在更改了表格布局以使其清楚。