SQL ORDER BY

In SQL ORDER BY clause if we want to order the database based on 2 columns then how does the ORDER BY clause know which column is the main priority. For eg:

SELECT * FROM table WHERE some_conditions ORDER BY column_1, column_2

Then will ORDER BY clause order the records giving column_1 as the highest priority?

Thanks

[343 byte] By [acetoleveragea] at [2007-10-2 0:02:08]
# 1
SELECT first_name || ' ' || last_nameFROM usersORDER BY last_name, first_name;John DoeJane SmithZed SmithThey sort in order of precedence the same way they appear in the ORDER BY clause.- Saish
Saisha at 2007-7-15 15:56:57 > top of Java-index,Developer Tools,Debugging and Profiling Tool APIs...
# 2
thanks
acetoleveragea at 2007-7-15 15:56:57 > top of Java-index,Developer Tools,Debugging and Profiling Tool APIs...