mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 20:12:31 +01:00
9 lines
311 B
Text
9 lines
311 B
Text
CREATE TABLE t1 ( a INT, b CHAR(3) );
|
|
INSERT INTO t1 VALUES ( 1, 'foo' );
|
|
CREATE TABLE t2 ( c CHAR(3), d INT );
|
|
INSERT INTO t2 VALUES ( 'foo', 1 );
|
|
UPDATE IGNORE t1, t2 SET b = 'bar', c = 'bar'
|
|
WHERE a != ( SELECT 1 UNION SELECT 2 );
|
|
Warnings:
|
|
Warning 1242 Subquery returns more than 1 row
|
|
DROP TABLE t1, t2;
|