Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello All...
i have this syntax in sql syntax :
----------------------------------------------
SQL
SELECT
Year
,Month
,GacBranchRef
,GacSecondDetailAccountRef
,GacFourthDetailAccountRef
,sum(Credit) - sum(Debit) as mandeh
, Date(Floor(Timestamp(item.VoucherDate,'DD/MM/YYYY hh:mm:ss')),'DD.MM.YYYY') as VoucherDate
FROM
----------------------------------------------
when i run that in qv script , don't identify Timestamp function (and maybe Date function) .because sql haven't Timestamp function, and maybe Date function)
what must i to do?
Unfortunately show same message...
Please provide the sample data....
try this
SQL
SELECT
Year
,Month
,GacBranchRef
,GacSecondDetailAccountRef
,GacFourthDetailAccountRef
,sum(Credit) - sum(Debit) as mandeh
,CONVERT(date, item.VoucherDate)
as VoucherDate
FROM