gpt4 book ai didi

laravel 中的 Mysql 查询在使用显示语法时给出语法错误

转载 作者:行者123 更新时间:2023-11-29 07:19:19 25 4
gpt4 key购买 nike

我有如下的sql查询

show indexes from `users` where not Non_unique and Key_Name <> 'PRIMARY';

但是当我在 Laravel 中编写相同的查询时,如下所示。

$columns = DB::select(DB::raw(" SHOW INDEXES FROM $table WHERE NOT Non_unique and Key_Name <> PRIMARY "))->get();

它给了我以下错误

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 'PRIMARY' at line 1

最佳答案

你需要添加'来包装primary,所以改变

$columns = DB::select(DB::raw(" SHOW INDEXES FROM $table WHERE NOT Non_unique and Key_Name <> PRIMARY "))->get();

$columns = DB::select(DB::raw(" SHOW INDEXES FROM $table WHERE NOT Non_unique and Key_Name <> 'PRIMARY' "))->get();

关于laravel 中的 Mysql 查询在使用显示语法时给出语法错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57139688/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com