• There is no option to backup on table level. but you can use select * into to copy the table data and definition. other option is you can move the table into different filegroup and take filegroup backup.

    With Sqlcmd you can copy the to run a query and just save the output to a file

    sqlcmd -Q "SELECT * FROM AdventureWorks2008R2.Person.Person" -o MyOutput.txt