0
創建SQL查詢我是新來Laravel但我想創建這個查詢(MySQL的):在Laravel 4.2
SELECT
*
FROM
(
SELECT
ce.empresa_id,
CONCAT(ce.nombre, ' ', ce.apellido) AS nombre,
ce.grupo_contable
FROM
cliente_empresa AS ce
UNION
SELECT
cc.empresa_id,
cc.nombre,
cc.grupo_contable
FROM
cuenta_contable AS cc
UNION
SELECT
cci.empresa_id,
cci.grupo_iva AS nombre,
cci.cuenta_contable AS grupo_contable
FROM
cuenta_contables_iva AS cci
) AS cuentasContables
WHERE
cuentasContables.empresa_id = 1
AND (cuentasContables.nombre LIKE '%a%'
OR cuentasContables.grupo_contable LIKE '%%')
看文檔,我不能找到合適的方式來做到這一點。謝謝。
在這裏,你去包含你需要的一切https://laravel.com/docs/4.2/queries – Maantje
@Maantje http://prntscr.com/gpixdv –
你已經嘗試過什麼(任何代碼?),我願意幫忙只是想從你身邊看到一些努力。 – Maantje