• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Windows Questions about Items in Databse

Saints Anathema

Old School Doleran
Joined
Feb 24, 2009
Messages
653
Reaction score
8
Location
BC,Canada
Code:
SELECT * FROM player_items WHERE item_id = 10016;

tried running that as a sql query in my phpmyadmin.. 10016 is a winged hat of trickery on my server.

i get this as a error

Code:
Error
SQL query:  

SELECT * 
FROM player_items
WHERE item_id =10016
LIMIT 0 , 30 

MySQL said:  

#1054 - Unknown column 'item_id' in 'where clause'

So, i tried the other query i had

Code:
SELECT * FROM player_items, player_depotitems, tile_items WHERE item_id = 10016

Code:
Error
SQL query:  

SELECT * 
FROM player_items, player_depotitems, tile_items
WHERE item_id =10016
LIMIT 0 , 30 

MySQL said:  

#1054 - Unknown column 'item_id' in 'where clause'



Anyone know why this isnt working? or what command i need to search for specific items in characters/depots/houses?
 
Are you sure you have the "item_id" column on the database? I might be mistaking it with something else but usually the column is called "itemtype"..

I also used this query to test it:
Code:
SELECT * FROM player_items WHERE itemtype = 1988

And it worked, but then I added player_depotitems (player_items, player_depotitems) and it didnt work, I think the query to search in various tables at the same time is another one, but Idk which sorry.
 
Last edited:
for my situation on my server, i actually only needed to search for a item in either the depot/house/character..

i just switched it to itemtype, for searching one of the 3.

i didnt really go that much further with it after that, i was just finding items that shouldntve have been out on my server.
 
for my situation on my server, i actually only needed to search for a item in either the depot/house/character..

i just switched it to itemtype, for searching one of the 3.

i didnt really go that much further with it after that, i was just finding items that shouldntve have been out on my server.

(Ty chris) xD
 
Back
Top