Hi,

When i try:

  "SELECT *, id FROM <table>"

all is fine.

But if i want the "*" at the end (because the table is large)
i try:

  "SELECT id, * FROM <table>"

and got:

You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '* FROM <table>' at line 1

I think this is a bug?

It works when i try:

  "SELECT id, <table>.* FROM <table>"

The Same thing is:

  "SELECT *, * FROM <table>" (which possibly makes no sense)

-Ralf

--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:    http://lists.mysql.com/[EMAIL PROTECTED]

Reply via email to