I want to export a database-tab to csv-file with quotes arround any string (column separator is ";"). This is what I want as csv file (without header): "abc";"blabla"
When I export just with "Select * from...", no quotes surround the string: abc;blabla
When I export with "Select concate('"',column1,'"'), concate('"',column2,'"') from...", following content is given in csv-file: """abc""";"""blabla"""