|
-
Sep 17th, 2000, 01:37 PM
#1
Thread Starter
Lively Member
Hi..
I need to sort a SQL query like 10,9,8..1
"SELECT * From Stories ORDER BY ID"
but I need something more.. to revers it..
And does anyone know where I can find a documentaion of the SELECT query with all parameters?
-
Sep 17th, 2000, 02:08 PM
#2
Code:
SELECT [ALL | DISTINCT] column1[,column2]
FROM table1[,table2]
[WHERE "conditions"]
[GROUP BY "column-list"]
[HAVING "conditions]
[ORDER BY "column-list" [ASC | DESC] ]
-
Sep 17th, 2000, 03:05 PM
#3
Thread Starter
Lively Member
-
Sep 17th, 2000, 03:20 PM
#4
Glad to help!
incase you need anymore help,
there are a few really good websites that I am learning SQL from,
http://www.sqlcourse.com
and
http://www.sqlcourse2.com
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|