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 ???? Quote 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 Quote 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' Quote 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 Quote 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 Quote Link to comment https://forums.phpfreaks.com/topic/74677-this-error-isnt-true/#findComment-377583 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.