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 Link to comment https://forums.phpfreaks.com/topic/93-easy-select/ 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: Link to comment https://forums.phpfreaks.com/topic/93-easy-select/#findComment-268 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.