Common issues
Dynamically populate SQL IN groups with parameters
IN groups with parametersSELECT color, shirt_size FROM shirts WHERE shirt_size IN ('small', 'medium', 'large');SELECT color, shirt_size FROM shirts WHERE shirt_size IN ();SELECT color, shirt_size FROM shirts WHERE shirt_size IN ({{ $json.input_shirt_sizes.map((i, pos) => "$" + (pos+1)).join(', ') }});
Working with timestamps and time zones
Outputting Date columns as date strings instead of ISO datetime strings
Last updated
Was this helpful?