To simply create a table in the MySQL database, for bbsearch_wordmatch, just copy and poaste the table creation part out of your backed up file.
leave out all th einsert stuff. That is the data it is trying to insert, you don;t need it, just the table being created part.
Code:
# --------------------------------------------------------
#
# Table structure for table 'nuke_bbsearch_wordmatch'
#
CREATE TABLE nuke_bbsearch_wordmatch (
post_id mediumint(8) unsigned DEFAULT '0' NOT NULL,
word_id mediumint(8) unsigned DEFAULT '0' NOT NULL,
title_match tinyint(1) DEFAULT '0' NOT NULL,
KEY word_id (word_id)
);
#