- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
SQL In() Function
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
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