Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7079867
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T06:43:28+00:00 2026-05-28T06:43:28+00:00

I have been experimenting with LOAD DATA INFILE and there are a couple things

  • 0

I have been experimenting with LOAD DATA INFILE and there are a couple things I would like to be able to do. I’m not sure if they are possible, or if I may need to create a temporary table for the upload.

When a CSV file is uploaded/inputed in my application, I’d like to have an auto-incrementing column for the rows. In addition, I’d like to add a column value to each row identifying the user who uploaded the file.

I am using PHP/MySQLi on a InnoDB database.

I may also have empty strings for null values in my CSV files. Is there a simple way to input these values as NULL into the database?

Thanks for all your help!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-28T06:43:29+00:00Added an answer on May 28, 2026 at 6:43 am

    to achieve what you want, you would need to programmatically pre-create the table first along with a triggers function prior to loading data into it.

    therefore, create the table first with triggers:

    example:

     CREATE TABLE foo (
        id INT NOT NULL AUTO_INCREMENT,
        fooitems TEXT,
        PRIMARY KEY (id)
     );
    
     CREATE TRIGGER fooblank2null
     BEFORE INSERT ON foo
     FOR EACH ROW
     SET NEW.fooitems=IF(TRIM(NEW.fooitems)='',NULL,NEW.fooitems);
    

    to test if the trigger works:

     INSERT INTO foo (fooitems)
     VALUES
     ('i'),(''),('am'),('foo'),(' '),('.');
    

    you can now load the data to the specific column.

    example:

     LOAD DATA
     INFILE 'foo.txt'
     INTO TABLE foo
     FIELDS TERMINATED BY ',' ENCLOSED BY '"'
     LINES TERMINATED BY '\n'
     (fooitems);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have been experimenting with HTML5 and gradient fades, I would like to use
I have been experimenting with a lot of web development apps like Drupal, Moodle,
I have been experimenting with the lightweight NiceDog PHP routing framework, which routes like
I have been experimenting with ways to read data from a SQL server as
I have been experimenting with methods over the past couple of weeks trying to
I have been experimenting with S3 and they have this cool feature where you
We have been experimenting with using data visualisation techniques inspired by Edward Tufte to
I have been experimenting with woopra.com A web analytics tool. Which requires a piece
I have been experimenting with WPF and rendering strict XAML markup in a web
I have been experimenting with Lambda expressions in Oxygene. Very simple recursive lambda expression

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.