728x90
반응형
sqlite 팁 TIP
Sqlite 다중 중첩 case문
case [Su_Volt] when 1 then (case [Su_Kind] when 1 then '6600'
when 2 then '440' end)
when 2 then (case [Su_Kind] when 1 then '3300'
when 2 then '380' end)
when 3 then (case [Su_Kind] when 2 then '220' end) end as Su_Volt,
expecting: LargeInt actual: WideString
TFDQuery and SQLite: Type mismatch for field, expecting: LargeInt actual: WideString
SELECT DayTime AS "TheDate", Sum(Device1) AS "DeviceTotal::BIGINT"
FROM HistoryRuntime WHERE DayTime BETWEEN {d 2017-06-01}
AND {d 2017-06-26} GROUP BY Date(DayTime)
isnull 같은 함수
sql구문 : isnull(cash, 0) as cash
sqlite구문 : ifnull(cash, 0) as cash
728x90
반응형
'데이터베이스 > SQLite' 카테고리의 다른 글
Sqlite 한글 쿼리시 빈값출력시 (0) | 2023.03.06 |
---|---|
특정문자 바꾸기 (0) | 2023.02.23 |
테이블, 컬럼의 존재여부 (0) | 2023.02.22 |
sqlite 형변환 , 특정문자 변환 (0) | 2023.02.21 |
[sqlite] 문자열 자르기 그 외 팁 (0) | 2023.02.20 |
댓글