猿问

SELECT 列表的表达式 #1 不在 GROUP BY 子句中并且包含非聚合列。

我正在 Codeigniter 3 中开发一个项目。一切都很顺利,但是当我将项目上传到共享托管 cPanel 时。我收到这个错误。

错误号:42000/1055

SELECT 列表的表达式 #1 不在 GROUP BY 子句中,并且包含非聚合列“siyabdev_smart_school.classes.id”,该列在功能上不依赖于 GROUP BY 子句中的列;这与 sql_mode=only_full_group_by 不兼容

这些问题仅出现在 cPanel 中。我尝试在共享主机的phpmyadmin中编辑变量。(尝试编辑 sql_mode 并删除ONLY_FULL_GROUP_BY),但我收到权限错误。

#1227 - 访问被拒绝,您需要(至少一项)超级权限才能执行此操作。

我陷入困境并搜索类似的问题,但这没有帮助。知道如何消除这些错误。

我的代码。

我编写了一个 JavaScript 函数,可以根据单击的按钮来更改元素的背景图像。所有图像都存储在单独的文件夹中。它可以在本地主机上正常工作,但是当我在本地主机上运行页面时,该特定功能不再工作,所有其他 JavaScript 功能都可以正常工作。我还没有在该页面上实现 php,所以我不确定问题是什么。


function changeBG(btnID){

    var card = document.getElementById('edit');

    if(btnID == 'btn1')

        card.style.backgroundImage = "url('/images/1.JPG')";

    else if(btnID == 'btn2')

        card.style.backgroundImage = "url('/images/2.jpg')";

    else if(btnID == 'btn3')

        card.style.backgroundImage = "url('/images/3.jpg')";

    else if(btnID == 'btn4')

        card.style.backgroundImage = "url('/images/4.jpg')";

}

.cardImage{

    height: 15rem;

    width: 30rem;

    border-radius: 30px;

    background: #a4bac0;

    background-image: url('');

    background-position: center;

}

<div class="cardImage" id="edit">

    <h5>Card</h5>

</div>

<div class="options">

    <h6>Options</h6>

    <button class="op" id="btn1" onclick="changeBG(this.id);">1</button>

    <button class="op" id="btn2"  onclick="changeBG(this.id);">2</button>

    <button class="op" id="btn3"  onclick="changeBG(this.id);">3</button>

    <button class="op" id="btn4"  onclick="changeBG(this.id);">4</button>

    <button class="op" id="save">Save</button>

</div>


温温酱
浏览 89回答 1
1回答

九州编程

你有没有尝试过ANY_VALUE在您的查询中,您有按类别分组,但在选择中有 id ,created_at 尝试像这样$q = $this->db->select('&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ANY_VALUE(`classes`.`id`) AS id,&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; `classes`.`class`,&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; GROUP_CONCAT(`sections`.`section`) AS sections,&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ANY_VALUE(`classes`.`created_at`) AS created_at&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ')
随时随地看视频慕课网APP
我要回答