MySQL datetime 날짜로 select하기
MySQL datetime 날짜로 select하기 select 컬럼명 from 테이블명 where date(컬럼명)='2018-01-23'; select 컬럼명 from 테이블명 where 컬럼명 between '2018-01-20' and '2018-01-24'; 위의 2가지 방법이 가장 기본적인 쿼리이다.
cordova plugin add https://github.com/wildabeast/BarcodeScanner.git
|
2
3
4
5
6
7
8
9
10
11
12
13
|
$ionicPlatform.ready(function(){
$scope.scan = function() {
$cordovaBarcodeScanner
.scan()
.then(function(barcodeData) {
alert(JSON.stringify(barcodeData));
}, function(error) {
alert(error);
});
};
});
})
|
2
3
4
5
6
7
8
9
10
11
12
13
|
<ion-content style="background: #e8ebf1;" class="padding" ng-controller="QRController">
<div class="card">
<div class="item">
<button class="button button-block button-positive" ng-click="scan()">
<i class="icon ion-qr-scanner"></i>
Scan Now
</button>
</div>
</div>
</ion-content>
|
댓글
댓글 쓰기