cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
The Discovery Summit 2025 Call for Content is open! Submit an abstract today to present at our premier analytics conference.
See how to use to use Text Explorer to glean valuable information from text data at April 25 webinar.
Choose Language Hide Translation Bar
View Original Published Thread

SQL In() Function

ErraticAttack
Level VI

Is anyone aware of what the SQL In() function is?  I don't see any documentation anywhere.  I'm using JMP Pro 16.2

Jordan
1 REPLY 1
txnelson
Super User


Re: SQL In() Function

The SQL IN Operator allows you to specify multiple values in a WHERE clause

SELECT column_name(s)
FROM table_name
WHERE column_name IN (value1, value2, ...);
Jim