Migrate Green Plum Array Data Type To Redshift IN clause:
Green Plum:
select * from table_t1 where col_1= ANY ARRAY ('A','B',C');
Redshift:
select * from table_t1 where col_1 IN ('A','B','C')
Welcome to explore technology about Kubernetes, MySQL, Machine Learning | Deep Learning - Shrenik Parekh
Migrate Green Plum Array Data Type To Redshift IN clause:
Green Plum:
select * from table_t1 where col_1= ANY ARRAY ('A','B',C');
Redshift:
select * from table_t1 where col_1 IN ('A','B','C')
Comments
Post a Comment