Load CSV file located in the classpath for H2 Database
Even if the official docs give the CSVREAD('classpath:/org/acme/data/address.csv')
example, Sean Patrick Floyd suggested to remove the leading slash, i.e. having:
CREATE TABLE T_FOO (
...
) as select * from CSVREAD('classpath:foo.csv');
and this is working!