Jump to content

Recommended Posts

  • 4 weeks later...
Posted

Show me the sql and ill solve it, i dont have VIP status. PS one possibility is that it needs space between  c LEFT and as a ON

 

Here is the correct:

 

PreparedStatement statement = con.prepareStatement("" +

+                     "SELECT" +

+                     "   c.charId," +

+                     "   c.char_name" +

+                     " FROM" +

+                     "   characters AS c" +

+                     " LEFT JOIN" +

+                     "   accounts AS a" +

+                     " ON" +

+                     "   c.account_name = a.login" +

+                     " WHERE" +

+                     "   c.online > 0" +

+                     " GROUP BY" +

+                     "   a.lastIP" +

+                     " ORDER BY" +

+                     "   c.level" +

+                     " DESC");

 

PS: Whoever did this share bravos for using JOIN on tables. But he is a tard for making a useless vote shit. Servers should focus on becoming BETTER rather than trying to trick vote sites with silly reward scripts.

Posted

Show me the sql and ill solve it, i dont have VIP status. PS one possibility is that it needs space between  c LEFT and as a ON

 

Here is the correct:

 

PreparedStatement statement = con.prepareStatement("" +

+                     "SELECT" +

+                     "   c.charId," +

+                     "   c.char_name" +

+                     " FROM" +

+                     "   characters AS c" +

+                     " LEFT JOIN" +

+                     "   accounts AS a" +

+                     " ON" +

+                     "   c.account_name = a.login" +

+                     " WHERE" +

+                     "   c.online > 0" +

+                     " GROUP BY" +

+                     "   a.lastIP" +

+                     " ORDER BY" +

+                     "   c.level" +

+                     " DESC");

 

PS: Whoever did this share bravos for using JOIN on tables. But he is a tard for making a useless vote shit. Servers should focus on becoming BETTER rather than trying to trick vote sites with silly reward scripts.

 

Try now i edited it a bit, copy the quoted code.

  • 4 weeks later...
  • 2 weeks later...

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.


×
×
  • Create New...