csv imports
-
hello forum i want to know the full form of CSV and what the full concept is regards rahul
The Comma Separated Value (CSV) File Format[^] Comma-separated values[^]
Giorgi Dalakishvili #region signature my articles My blog[^] #endregion
-
hello forum i want to know the full form of CSV and what the full concept is regards rahul
Hi Rahul, CSV is for Comma-separated values. CSV files are just like an excel. CSV is mainly use to import/export huge data in SQL. You can notice in some websites "Export to excel" link, if you click this link a file will be downloaded, which will be actually a CSV file (we use CSV due to its fastness and quick response). Thanks Be a good professional who shares programming secrets with others.
-
Hi Rahul, CSV is for Comma-separated values. CSV files are just like an excel. CSV is mainly use to import/export huge data in SQL. You can notice in some websites "Export to excel" link, if you click this link a file will be downloaded, which will be actually a CSV file (we use CSV due to its fastness and quick response). Thanks Be a good professional who shares programming secrets with others.
Mohammed Hameed wrote:
CSV files are just like an excel
Well, no not really. A true Excel file (.xls) is not a csv file.
Mohammed Hameed wrote:
"Export to excel" link, if you click this link a file will be downloaded, which will be actually a CSV file
Sometimes. An Excel file is of a very specific format. A csv file is simply a comma delimited file which can be read by Excel or any number of other applications. if you type
bob,the,coder
into notepad and save it you have a csv format file. Hope this helpsBob Ashfield Consultants Ltd
-
The Comma Separated Value (CSV) File Format[^] Comma-separated values[^]
Giorgi Dalakishvili #region signature my articles My blog[^] #endregion
That first link was very informative; thanks!
-
That first link was very informative; thanks!
Glad to help you :)
Giorgi Dalakishvili #region signature my articles My blog[^] #endregion