I am writing a query for inserting data in to database but when I am printing query at output it turns into "SHOW COLUMNS from tbl_name" query.
I am writing below query . But it executes like shown in image
$table_name1 = $wpdb->prefix . 'fullcontact';
$sql1=$wpdb->insert( $table_name1, array(
'status' => $status,
'request_id' => $req_id,
'likelihood' => $likelihood,
'photos' => $photos,
'chats' => $chats,
'websites' => $websites,
'fullname' => $fullname,
'familyname' => $familyname,
'givenname' => $givenname,
'organisation' => $organisation,
'normalizedlocation' => $normalizedlocation,
'city' => $city,
'state' => $state,
'country' => $country,
'age' => $age,
'agerange' => $agerange,
'gender' => $gender,
'locationgeneral' => $locationgeneral,
'socialprofiles' => $socialprofiles,
'scores' => $scores,
'topics' => $topics
) );
//exit( var_dump( $wpdb->last_query ) );
$wpdb->show_errors();
$wpdb->print_error($sql1);