Quick SQL Tip 📝: If you want to convert your number into currency, how would you do that? Use FORMAT() only when you want to display the number as currency. -- SELECT FORMAT(12345.67, 'C', 'en-US') ...