Is there any way to return an "AS" result using WHERE or otherwise?
I'm doing a SUBSTRING on the FONE1 column and trying to return the DDD = 31 but I get the error, Code: 1054. Unknown column 'DDD' in 'where clause' 0.000 sec
-->
SELECT **SUBSTRING(FONE1,1,2) AS DDD**, FONE1, F1STA,LASTCALL
FROM discador_processados
WHERE fila_mailing = 2638
AND F1STA ='ANSWER'
AND CLASSE1 IN ('VC2','VC3')
**AND DDD = 31**
AND LASTCALL BETWEEN '2020-10-02 00:00:00' AND '2020-10-30 23:59:59'
The idea would be to get the return below
DDD FONE1 F1STA LASTCALL
31 31999999999 ANSWER 2020-10-02 09:08:13
31 31999999999 ANSWER 2020-10-02 09:09:16
31 31999999999 ANSWER 2020-10-02 09:17:41
Thanks!