hello -
in trying to work around the SERIAL PRIMARY KEY and jScript conflict, i started wondering if CAST might work:
SELECT COUNT(*) FROM sequelizeTable WHERE CAST('sequelizeId' AS STRING)='235801104191094785';
//returns zero for some unknown reason
SELECT COUNT(*) FROM sequelizeTable WHERE sequelizeId = 235801104191094785;
//returns one as expected
and of course i tried CAST VARCHAR too. does anybody have any idea why i cannot seem to cast the key as as a non-integer?
also, what is the daily newbie idiot question limit? or is it a weekly limit?