What does the $ symbol do in MySQL, or how does it work? For example, I can successfully insert a value in a table field
$UNIX_TIMESTAMP(archive_date) * 1000 and when I try to insert the same expression without the $ character,
UNIX_TIMESTAMP(archive_date) * 1000 I get the error:
Unknown column 'archive_date' in 'field list'
So, does this symbol escape functions, or does it have some other value?
UPD
The fact that "I can successfully insert a value in the table field" is not a hypothetical possibility, I actually have this insertion:
