format function - please help

jennyha23

Registered User.
Local time
Today, 10:28
Joined
Jul 15, 2003
Messages
13
Hello friends, I have this query but I don't know what FORMAT function really does? can you please tell me what FORMAT DOES?

select emp_num,
total_salary,
max_salary,
Format(total_salary/max_salary) AS percent_sal, (line 4)
Format(total_salary*.25)/max_salary AS bonus_sal (line 5)
From emp;

When I convert this query in SQL view, it don't recoginize this function.

PLEASE HELP.
jENNY.
 

Users who are viewing this thread

Back
Top Bottom