0

What is the equivalent query for 'NOT IN' in Volt DB?

1 Answers1

1

VoltDB supports NOT IN syntax:

1> create table foo (a integer);
Command succeeded.
2> insert into foo values (1);
(Returned 1 rows in 0.00s)
3> insert into foo values (2);
(Returned 1 rows in 0.00s)
4> insert into foo values (3);
(Returned 1 rows in 0.00s)
5> select * from foo where a not in (1,2);
A
--
 3

(Returned 1 rows in 0.00s)
BenjaminBallard
  • 1,482
  • 12
  • 11