我有两个表Movie和 to ,我想显示它的data.here是我的查询
SELECT m.title,
t.timing
FROM Movie AS m
LEFT JOIN timing AS t
ON m.id=t.movie_id and t.cenema like '%Dubai Mall%'
电影
1%幸运
2×EXP
计时
Id _
1.迪拜商城1.
2.迪拜商城.1.
对于一部电影,我有两个时间记录,所以它给了我重复的结果。
我怎么才能避免?
我刚刚为我的网站创建了一个超薄的rest api,我想围绕相同的域(服务器)创建我的网站。
<?php
use \Psr\Http\Message\ServerRequestInterface as Request;
use \Psr\Http\Message\ResponseInterface as Response;
require '../vendor/autoload.php';
//require '../src/config/db.php';
$app = new \Slim\App;
$app->get('/hello/{n