We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Some tools generate CSVs that contain some extra data at the top, such as bank statement exports
"Account Name : REDACTED" "Account Number : REDACTED" "Date Range : 01/01/2023-11/02/2023" Transaction Date,Posted Date,Category,Debit 2023-11-01,2023-11-01,Payment/Credit,100.00
A CSV with these extra rows before the header is currently unreadable. I'd like an option to skip these rows
select * from read_csv( 'transactions.csv', skip_rows => 3 )
The text was updated successfully, but these errors were encountered:
skip_rows
CsvFormat
No branches or pull requests
Description
Some tools generate CSVs that contain some extra data at the top, such as bank statement exports
A CSV with these extra rows before the header is currently unreadable. I'd like an option to skip these rows
The text was updated successfully, but these errors were encountered: