3

我需要选择一个不等于某些语句的值本身。

就像是

SELECT * FROM table WHERE * != "qwerty"

但不喜欢

SELECT * FROM table WHERE column_name != "qwerty"

我怎样才能做到这一点?

我有一张像

       1   2   3   4   5   6   7   8   9   10   11   ...   ...
    1  a   b   c   d   t   h   v   h   d   t    y    ...   ...
    2  g   t   5   s   h   r   q   q   q   q    q    ...   ...
   ... ...
   ... ...

我需要选择每个不等于“q”的值

我可以做某事

SELECT * WHERE 1 != q AND 2 != q AND 3 != q ...

但我有太多列

4

3 回答 3

7

尝试这个:

SELECT * FROM table WHERE "qwerty" NOT IN (column1,column2,column3,column4,etc)

另一个例子:

-- this...
SELECT 'HELLO!' FROM tblx 
WHERE 'JOHN' NOT IN (col1,col2,col3);

-- ...is semantically equivalent to:
SELECT 'HELLO!' FROM tblx 
WHERE 'JOHN' <> col1
  AND 'JOHN' <> col2
  AND 'JOHN' <> col3;

数据源:

create table tblx(col1 text,col2 text,col3 text);
 insert into tblx values
('GEORGE','PAUL','RINGO'), 
('GEORGE','JOHN','RINGO');

如果您使用的是 Postgresql,则可以为列创建快捷方式:

select * 
from
(
select 

   row(tblx.*)::text AS colsAsText,

   translate(row(tblx.*)::text,'()','{}')::text[]
      as colsAsArray

from tblx
) x
where 'JOHN' <> ALL(colsAsArray)  

现场测试:http ://www.sqlfiddle.com/#!1/8de35/2

Postgres 可以从数组中生成行,'JOHN' <> ALL相当于::

where 'JOHN' NOT IN (SELECT unnest(colsAsArray))  

现场测试:http ://www.sqlfiddle.com/#!1/8de35/6


如果上面真的是你想要实现的,如果你使用全文搜索,搜索会好很多



对于 MySQL:

select 
  @columns := group_concat(column_name)
from information_schema.columns
where table_name = 'tblx'
group by table_name;




set @dynStmt := 
   concat('select * from tblx where ? NOT IN (',  @columns ,')');



select @dynStmt;

prepare stmt from @dynStmt;

set @filter := 'JOHN';

execute stmt using @filter;

deallocate prepare stmt; 

现场测试:http ://www.sqlfiddle.com/#!2/8de35/49

于 2012-05-06T07:42:24.420 回答
3

这将为您提供所需的 where 表达式。

select GROUP_CONCAT(COLUMN_NAME SEPARATOR ' != ''q'' AND ') as Exp
from INFORMATION_SCHEMA.COLUMNS
where TABLE_NAME = 'YourTable'

也许您可以在一些动态 SQL 中使用它,或者将字符串复制并粘贴到您的实际查询中。

于 2012-05-06T08:21:58.700 回答
0

也许你可以试试SHOW COLUMNS

SHOW COLUMNS FROM SomeTable

这将返回所有列信息。

例子:

    [Field] => id
    [Type] => int(7)
    [Null] =>  
    [Key] => PRI
    [Default] =>
    [Extra] => auto_increment

然后,您可以使用Michael Buen的答案来获得您想要的值:

SELECT * FROM table WHERE "qwerty" NOT IN (columnName1,columnName2,columnName3,columnName4,etc)
于 2012-05-06T08:08:13.333 回答