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; 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 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!!! Link to comment https://forums.phpfreaks.com/topic/260953-cant-create-view/#findComment-1337422 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.