cooldude832 Posted October 25, 2007 Share Posted October 25, 2007 I get this error Table 'db212911583.Events_new Where EventID = '293'' doesn't exist the query is: Select CreatorID From `Events_new Where EventID = '293' and I checked my Events_new table and there is an EventID for 293 I'm confused ???? Link to comment https://forums.phpfreaks.com/topic/74677-this-error-isnt-true/ Share on other sites More sharing options...
cooldude832 Posted October 25, 2007 Author Share Posted October 25, 2007 and its not a single row specific either I tried it on an another row that I know exist Link to comment https://forums.phpfreaks.com/topic/74677-this-error-isnt-true/#findComment-377556 Share on other sites More sharing options...
toplay Posted October 25, 2007 Share Posted October 25, 2007 If that's really your query, then you're missing a backtick mark after the table name. Change it to: Select CreatorID From `Events_new` Where EventID = '293' Link to comment https://forums.phpfreaks.com/topic/74677-this-error-isnt-true/#findComment-377560 Share on other sites More sharing options...
rajivgonsalves Posted October 25, 2007 Share Posted October 25, 2007 the query seems to be wrong Select CreatorID From `Events_new Where EventID = '293' should be Select CreatorID From `Events_new` Where EventID = '293' observe the "`" character added Cheer! Rajiv Link to comment https://forums.phpfreaks.com/topic/74677-this-error-isnt-true/#findComment-377579 Share on other sites More sharing options...
teng84 Posted October 25, 2007 Share Posted October 25, 2007 the query seems to be wrong Select CreatorID From `Events_new Where EventID = '293' should be Select CreatorID From `Events_new` Where EventID = '293' observe the "`" character added Cheer! Rajiv that is mentioned already read toplay post Link to comment https://forums.phpfreaks.com/topic/74677-this-error-isnt-true/#findComment-377583 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.