怎么使用查询构造器查询当前表中字段名

如题,求大神解答,在文档中看了很久,就是没看到
已邀请:

zhuzhichao

赞同来自:

DB::raw("select COLUMN_NAME from information_schema.COLUMNS where table_name = 'your_table_name' and table_schema = 'your_db_name'");

把里面的 your_table_name 和 your_db_name 替换为你的表名和数据库名即可。

要回复问题请先登录注册