Are there any MySQL identifiers like below like ::column and ::direction
const [rows] = await connection.query(
`SELECT * FROM users
WHERE id = :id
AND status = :status
ORDER BY ::column :direction`,
{ id: 14, status: 'active', column: 'username', direction: 'ASC' }
)
Are there any MySQL identifiers like below like
::columnand::direction