aveach Posted January 26, 2003 Share Posted January 26, 2003 I need to select all the records in my table that have entries in a particular column. Like Select * from bar_info where bar_website=notnull I just want to display all the records that have entries in the bar_website column. Obviously I\'m new, Please help. Thanks Quote Link to comment Share on other sites More sharing options...
effigy Posted January 26, 2003 Share Posted January 26, 2003 select * from bar_info where bar_website is not null; select * from bar_info where bar_website!=NULL; i think either will do. i hope my syntax is right... i haven\'t sql\'ed in awhile :shock: Quote Link to comment 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.