I'm having a error when I try to import wordpress database into phpmyadmin. Error msg
-- -- Databas:
133425-admin-- USE 133425 - admin;MySQL sa: Dokumentation
1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use
near '133425-admin' at line 4
And the first line in the .sql file is
-- phpMyAdmin SQL Dump
-- version 4.5.1
-- http://www.phpmyadmin.net
--
-- Värd: 127.0.0.1
-- Tid vid skapande: 04 nov 2016 kl 08:56
-- Serverversion: 10.1.16-MariaDB
-- PHP-version: 5.6.24
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
--
-- Databas: `133425-admin`
--
USE 133425-admin;
-- --------------------------------------------------------
--
-- Tabellstruktur `django_migrations`
--
CREATE TABLE `django_migrations` (
`id` int(11) NOT NULL,
`app` varchar(255) NOT NULL,
`name` varchar(255) NOT NULL,
`applied` datetime(6) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
The only thing that have changes from my old database to this one is the name 133425-admin so I added USE 133425-admin; When importing the .sql file into a database named the same as before it is successfull.
Is the USE.... line wrong?
Here's a screenshot of the problem:

133425-adminexist ? If so, what happens if you use backticks, likeUSE `133425-admin;`? - roberto06USE `133425-admin;`! use insteadUSE `133425-admin`;- the semicolon after the last backtick! - Sebastian Brosch