简体   繁体   中英

How to use 'AS' in cakephp 4 query?

How to add AS in cake php query?

$table = $this
->find()
->select(['id', 'fname AS first_name'])

When i run it "check the manual that corresponds to your MariaDB server version for the right syntax to use near 'AS "

在此处输入图像描述

Simple try:

$this
->find()
->select(['id'])
->select(['fname' => 'first_name']); // SELECT first_name AS fname

and read:

https://book.cakephp.org/4/en/orm/query-builder.html#selecting-data

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM