I had successfully imported a database using command line, but now my pain area is how to import a single table with its data to the existing database using command line.
It would be combination of EXPORT INTO OUTFILE and LOAD DATA INFILE
You need to export that single table with EXPORT INTO OUTFILE, this will export table data to a file. You can import that particular table using LOAD DATA INFILE