Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
System.out.println(context.exclude);
context.exclude=input_row.exclude;
System.out.println(context.exclude);
1
1234,2345,3456
SELECT *
FROM tableA
WHERE fieldA NOT IN ( "+context.excludes+" )
LIMIT 10
context.exclude="("+input_row.exclude+")";
SELECT *
FROM tableA
WHERE fieldA NOT IN "+context.excludes+"
LIMIT 10
SELECT *
FROM tableA
WHERE fieldA NOT IN ( "+context.excludes+" )
LIMIT 10
SELECT *
FROM tableA
WHERE fieldA NOT IN ( '1234,2345,3456' )
LIMIT 10
SELECT *
FROM tableA
WHERE fieldA NOT IN ( 1234,2345,3456 )
LIMIT 10