Reputation: 3867
SUBSTRING(SLAC_CNTRL_ACNO, 3, 4)
how can i use this query in crystal report
Upvotes: 0
Views: 8935
Reputation: 11
Instead of substring, Crystal Reports uses mid
function:
mid(SLAC_CNTRL_ACNO, 3, 4)
Upvotes: 1
Reputation: 26272
Either the entire SQL query needs to be in a Command OR you can use a SQL Expression field if the sub-query returns a scalar value.
See my posting, Crystal Reports: Using SQL Expression Fields.
Upvotes: 0