Top "Csv" questions

Comma-Separated Values or Character-Separated Values (CSV) is a standard "flat file database" format for storing tabular data in plain text, consisting of an optional header row that lists the table fields delimited by commas or tabs or other delimiter character, followed by one or more rows (newline separated) representing the table records as delimited lists of the values.

Export table from database to csv file

I want to: Export table from sql server database to a comma delimited csv file without using sql Server import …

sql-server database csv
Writing a dictionary to a csv file with one line for every 'key: value'

I've got a dictionary: mydict = {key1: value_a, key2: value_b, key3: value_c} I want to write the data …

python csv dictionary
Import CSV to mysql table

What is the best/fastest way to upload a csv file into a mysql table? I would like for the …

mysql csv import load-data-infile database-table
View tabular file such as CSV from command line

Anyone know of a command-line CSV viewer for Linux/OS X? I'm thinking of something like less but that spaces …

linux macos command-line csv
Parsing a CSV file using NodeJS

With nodejs I want to parse a .csv file of 10000 records and do some operation on each row. I tried …

node.js csv
c# datatable to csv

Could somebody please tell me why the following code is not working. The data is saved into the csv file, …

c# csv delimited-text
csv.Error: iterator should return strings, not bytes

Sample.csv contains the following: NAME Id No Dept Tom 1 12 CS Hendry 2 35 EC Bahamas 3 21 IT Frank 4 61 EE And the Python …

python python-3.x csv
Convert xlsx to csv in Linux with command line

I'm looking for a way to convert xlsx files to csv files on Linux. I do not want to use …

linux excel csv converter xlsx
How to add a new column to a CSV file?

I have several CSV files that look like this: Input Name Code blackberry 1 wineberry 2 rasberry 1 blueberry 1 mulberry 2 I would like …

python csv python-3.x
Write single CSV file using spark-csv

I am using https://github.com/databricks/spark-csv , I am trying to write a single CSV, but not able to, …

scala csv apache-spark spark-csv