I have created a mysql dump for only one table in my database. The command I used to create the dump was mysqldump -uroot -p database_name table_name > backup.sql. Now, when I am trying to import the data into my machine using the command "mysql -uroot -p database_name table_name < backup.sql" I am not getting anything.
I only get text on command line which explains me how to use mysql command. Is there anything i am missing here?