Suppose I have a table called 'myTable':
columnA| columnB| columnC
1 | Yellow| Apple
3 | Red | Grape
8 | Blue | Banana
6 | Green | Orange
The above table is a simplification of an actual table for demo purposes. Imagine actual table is 100K + rows. Now, I want to select only the rows where columnB is in a list/array: ex - ['Red', 'Blue', 'Green']. I am not sure the right syntax to use here.
SELECT * FROM myTable WHERE columnB IN Array['Red', 'Blue', 'Green']
Whats the proper syntax to achieve this?