attaboy Posted April 14, 2012 Share Posted April 14, 2012 The following was working fine till put the WHERE LifeExpectancy NOT NULL clause in. CREATE VIEW loDensity AS SELECT Name, SurfaceArea, Population, Population / SurfaceArea AS popDensity, LifeExpectancy FROM country WHERE LifeExpectancy NOT NULL ORDER BY popDensity LIMIT 10; Quote Link to comment https://forums.phpfreaks.com/topic/260953-cant-create-view/ Share on other sites More sharing options...
awjudd Posted April 14, 2012 Share Posted April 14, 2012 Because that is an invalid query. It should be IS NOT NULL. CREATE VIEW loDensity AS SELECT Name, SurfaceArea, Population, Population / SurfaceArea AS popDensity, LifeExpectancy FROM country WHERE LifeExpectancy IS NOT NULL With views, when in doubt, just try to copy and past the SQL and see the error message. ~awjudd Quote Link to comment https://forums.phpfreaks.com/topic/260953-cant-create-view/#findComment-1337415 Share on other sites More sharing options...
attaboy Posted April 14, 2012 Author Share Posted April 14, 2012 That did it thanks much!!! Quote Link to comment https://forums.phpfreaks.com/topic/260953-cant-create-view/#findComment-1337422 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.