Another SuiteQL question: is it possible to use co...
# suiteanalytics
j
Another SuiteQL question: is it possible to use column aliases with spaces? I'm getting an error when I try something like
SELECT cola AS 'Column A' FROM mytable
d
Copy code
var suiteQLStr = `SELECT entityid "NAME ALIAS" FROM EMPLOYEE WHERE entityid LIKE '%Dylan%'`
seems to work
a
use [ ] around your alias or " "
j
ah that works. Though it lowerCase()s it