일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- php
- linux
- jenkins
- redis
- AWS
- springboot
- tool
- db
- Spring Batch
- Gradle
- Web Server
- Oracle
- ubuntu
- elasticsearch
- MySQL
- Design Patterns
- jsp
- javascript
- it
- ReactJS
- Spring
- laravel
- JVM
- Git
- Spring Boot
- java
- 요리
- devops
- 맛집
- IntelliJ
Archives
- Today
- Total
아무거나
옐로퀀트ORM 조건 조회 본문
반응형
[SyncTimes.php]
use Illuminate\Database\Eloquent\Model;
class SyncTimes extends Model
{
public $timestamps = false;
protected $primaryKey = 'seq';
protected $connection = "auth";
protected $table = 'sync_times';
}
// 조회할 빌더 내용
$syncTime = new SyncTimes();
$syncTimeResult = $syncTime->select('필드1', '필드2')
->where('조건1', {조건1})
->where('조건2', {조건2})
->orderBy('정렬1', 'desc')
->get();
[laravel 옐로퀀트 사용 조건 조회]
모델은 반드시 복수형
반응형
'PHP > Laravel' 카테고리의 다른 글
도메인 기준 환경변수 분기처리 (0) | 2019.04.08 |
---|---|
상수 관리 (0) | 2019.04.08 |
사용자 인증(authentication) 예제 (0) | 2019.04.05 |
event 기능 (0) | 2019.04.05 |
event & queue (0) | 2019.04.05 |
Comments