我有一个wordpress网站,并备份了包括数据库在内的所有文件,因此可以从phpmyadmin还原数据库文件。
(对不起,我是sql和mysql的新手)
并且phpmyadmin给我一个错误:
SQL查询:
表格:
wp_options
表中预期的大约行:193
删除任何现有表
wp_options
如果存在
wp_options
,则删除表MySQL说:
1046-未选择数据库
答案 0 :(得分:0)
在顶部添加“使用”命令以选择数据库:
USE [database name];
使用下面的查询并将结果设置为变量以检查表是否存在:
declare @ifExists int = 0;
set @ifExists = (SELECT COUNT(*)
FROM information_schema.tables
WHERE table_schema = '[database name]'
AND table_name = '[table name]';)
然后使用@ifExists来决定是否需要删除表:
if @ifExists > 0
begin
DROP TABLE [table name]
end