I have 3 variables:
var1="abc"
var2="def"
sqlPrefix = "select x,y in myTable where myVar in "
I want to create a string of ('abc','def')
, so I can directly concatenate that to the end of sqlPrefx
, so my final string is select x,y in myTable where myVar in ('abc','def')