如何把excel数据导入到mysql数据库中_MySQL
bitsCN.com
如何把excel数据导入到mysql数据库中 最近做的工作涉及到把excel数据导入到mysql数据库中, 看来一些mysqlimport, phpmyadmin命令, 但是不怎么会用. 就决定自己写脚本解决. 先把excel数据文件保存成csv格式的文件, 然后写了下面的简单perl脚本倒入mysql数据库中.需要注意用你的mysql数据库表的结构替换掉. 运行脚本并且把csv格式的文件做为参数即可. #!/usr/bin/perl # perl program: insert_mysql_data.pl# function: insert mysql data from csv file# usage : insert_mysql_data.pl csv_file# Author: shenxiangfeng@360.cn# Date: 2012-9-20 use strict;use warnings;use DBI; # define the global varsmy $CHECK_DEBUG=1;my $CSV_FILE;my $lines = 0;# ------------------------# signal handle function# ------------------------local $SIG{'INT'} = /&__int_handler;sub __int_handler{ my @int = @_; if ($int[0]) { # Called on a user interrupt die "/nInterrupted by /"ctrl+c/"/n"; }}# get the parametermy $parameter = shift;if (! -e $parameter) { die("program parameter is not right. /nUsage: md5_check.pl package_name_or_directory/n");}elsif (-f $parameter) {# connect mysql databasemy $dbh = DBI->connect("DBI:mysql:database=tuiguang;host=localhost", "root", "", {'RaiseError' => 1});$dbh->do("SET NAMES 'utf8'"); # parameter is csv file open($CSV_FILE,") { my $line=$_; chomp($line);my @parts=split(/,/,$line);print "@parts will insert./n" if ($CHECK_DEBUG);my $rows = $dbh->do("INSERT INTO AccountInfo (ID, Name, PassWord, Property, ChanType, Status, Discount, ChanBelong, DownloadUrl) values ('$parts[0]', '$parts[1]', '$parts[2]', $parts[3], $parts[4], $parts[5], $parts[6], $parts[7], '$parts[8]')");print "$rows row(s) affected./n" if ($CHECK_DEBUG);$lines ++;}# clean up close($CSV_FILE);$dbh->disconnect();}# post process print "Successfully process the $lines lines files. NO error found./n";exit(0);
bitsCN.com

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

1. Open the PPT and turn the page to the page where you need to insert the excel icon. Click the Insert tab. 2. Click [Object]. 3. The following dialog box will pop up. 4. Click [Create from file] and click [Browse]. 5. Select the excel table to be inserted. 6. Click OK and the following page will pop up. 7. Check [Show as icon]. 8. Click OK.

How to read excel data in html: 1. Use JavaScript library to read Excel data; 2. Use server-side programming language to read Excel data.

Go language is an efficient, concise and easy-to-learn programming language. It is favored by developers because of its advantages in concurrent programming and network programming. In actual development, database operations are an indispensable part. This article will introduce how to use Go language to implement database addition, deletion, modification and query operations. In Go language, we usually use third-party libraries to operate databases, such as commonly used sql packages, gorm, etc. Here we take the sql package as an example to introduce how to implement the addition, deletion, modification and query operations of the database. Assume we are using a MySQL database.

1. Create a new PPT page and insert the Excel ring chart. 2. Delete the redundant data in the table, leaving two rows of data, and set them in percentage form to facilitate parameter setting. 3. Copy the data in column B to other columns according to display needs. From the sample picture of this column, you can see what it looks like when copying 5 columns. Pay attention to why the animation operation does not use dragging cells to copy, but the honest and practical method of copying and pasting. You will experience it when you actually operate it. 4. After copying N pieces, set the orange part to no color, and you are done. Note: 1. Use PPT to make information charts like this, which can be drawn graphically or accurately produced using Excel data. 2. This technique is valid for Excel 2007 and above.

How to get Excel data in HTML? Import Excel files: using elements. Parse Excel files: use xlsx library or browser functionality. Get data: Get the worksheet object, including row and column data. Display data: Use HTML elements (such as tables) to display data.

1. The SUM function is used to sum the numbers in a column or a group of cells, for example: =SUM(A1:J10). 2. The AVERAGE function is used to calculate the average of the numbers in a column or a group of cells, for example: =AVERAGE(A1:A10). 3. COUNT function, used to count the number of numbers or text in a column or a group of cells, for example: =COUNT(A1:A10) 4. IF function, used to make logical judgments based on specified conditions and return the corresponding result.

Hibernate polymorphic mapping can map inherited classes to the database and provides the following mapping types: joined-subclass: Create a separate table for the subclass, including all columns of the parent class. table-per-class: Create a separate table for subclasses, containing only subclass-specific columns. union-subclass: similar to joined-subclass, but the parent class table unions all subclass columns.

Apple's latest releases of iOS18, iPadOS18 and macOS Sequoia systems have added an important feature to the Photos application, designed to help users easily recover photos and videos lost or damaged due to various reasons. The new feature introduces an album called "Recovered" in the Tools section of the Photos app that will automatically appear when a user has pictures or videos on their device that are not part of their photo library. The emergence of the "Recovered" album provides a solution for photos and videos lost due to database corruption, the camera application not saving to the photo library correctly, or a third-party application managing the photo library. Users only need a few simple steps
