[DiscordArchive] <@&408012830147739658> I'm kinda mediocre when it comes to more than completely basic SQL stuff, can
[DiscordArchive] <@&408012830147739658> I'm kinda mediocre when it comes to more than completely basic SQL stuff, can
Archived author: Amaroth • Posted: 2018-02-16T19:58:49.082000+00:00
Original source
<@&408012830147739658> I'm kinda mediocre when it comes to more than completely basic SQL stuff, can someone help me?
Archived author: Amaroth • Posted: 2018-02-16T19:59:18.524000+00:00
Original source
SELECT (entry, class, subclass, SoundOverrideSubclass, Material, displayid, InventoryType, sheath) FROM item_template WHERE entry BETWEEN 100 AND 200;
I think you see what I want to achieve
Archived author: Amaroth • Posted: 2018-02-16T19:59:32.076000+00:00
Original source
This outputs Error Code: 1241 Operand should contain 1 column(s)
Archived author: Amaroth • Posted: 2018-02-16T19:59:50.645000+00:00
Original source
I found some topics on StackOverflow and so on but still can't figure out how to write this correctly to make it work
Archived author: Barbz • Posted: 2018-02-16T20:03:17.887000+00:00
Original source
```SQL
SELECT entry, class, subclass, SoundOverrideSubclass, Material, displayid, InventoryType, sheath
FROM item_template
WHERE entry BETWEEN 100 AND 200;```
Archived author: Barbz • Posted: 2018-02-16T20:03:19.560000+00:00
Original source
this works
Archived author: Amaroth • Posted: 2018-02-16T20:08:11.275000+00:00
Original source
Call me bloody idiot.
Archived author: Amaroth • Posted: 2018-02-16T20:08:25.709000+00:00
Original source
And thanks