简体   繁体   English

在 phpmyadmin (xampp) 中运行查询后,当我单击“创建视图”时出现错误 404

[英]After running query in phpmyadmin (xampp) when I click on Create view I get error 404

SELECT 
    make, 
    MIN(price) AS minimum, 
    MAX(price) AS maximum, 
    MAX(price) - MIN(price) AS price_range, 
    AVG(price) AS average, 
    COUNT(price) AS count 
FROM 
    cars 
    INNER JOIN makes USING (make_id) 
GROUP BY 
    make;

query runs fine but create view (phpmyadmin ver 4.7.9) brings this error:查询运行良好,但创建视图(phpmyadmin 版本 4.7.9)带来此错误:

Error in processing request
Error code: 404
Error text: Not Found (rejected)

It seems that the connection to server has been lost.似乎与服务器的连接已丢失。 Please check your network connectivity and server status.请检查您的网络连接和服务器状态。

Because there a lot of things that could be causing this I would advice you in the direction of reinstalling PMA to see if this fixes your issue.因为有很多事情可能会导致这种情况,所以我会建议您重新安装 PMA,看看这是否能解决您的问题。 It might be just some installation issue.这可能只是一些安装问题。

I´ve been experiencing the same problem.我遇到了同样的问题。 My solution was quite simple: In PHPmyAdmin/SQL Edit, before de command SELECT just write de command CREATE VIEW我的解决方案很简单:在 PHPmyAdmin/SQL Edit 中,在 de command SELECT 之前只写 de command CREATE VIEW

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 当我单击导出时,phpmyadmin 中出现此错误 - When I click on export this error occurs in phpmyadmin 在实时服务器上的 phpmyadmin 上运行任何查询时出错。 但是当我在 adminer.php 上运行它时,它正在执行 - Error in running any query on the phpmyadmin on the live server . But when i am runnign it on the adminer.php it is executing 使用PHP我发出一个MySQL数据库的简单查询-当在phpMyAdmin中发出相同查询时,我得到一个错误,我得到信息行 - Using PHP I issue a simple query of a MySQL database - I get an error, when issuing the same query in phpMyAdmin I get rows of information 在 XAMPP 中更新 php 版本后,我在 http://localhost/phpmyadmin/ 中遇到致命错误 - After updating php version in XAMPP I'm facing Fatal Error in http://localhost/phpmyadmin/ 尝试在XAMPP上安装Imagemagick后出现此错误 - I get this error after trying to install Imagemagick on XAMPP 升级到PHP版本7后,我得到XAMPP Apache服务器错误 - After Upgrading to PHP Version 7 i get XAMPP Apache Server Error 当我单击表结构时 phpmyadmin 挂起 - Phpmyadmin hangs when i click on table structure 当我点击分页上的下一页时,它会在 codeigniter 中出现 404 错误 - When I click to the next page on pagination,it goes to 404 error in codeigniter XAMPP phpMyAdmin - 导出数据库时出错(Windows) - XAMPP phpMyAdmin - Error when exporting database (windows) 在 Ubuntu 14.04 上运行 PHPMyAdmin 时出现 404 - 404 when running PHPMyAdmin on Ubuntu 14.04
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM