2tonejoe Posted February 1, 2008 Share Posted February 1, 2008 here is the mysql commad: mysql> select ver1, ver2, ver3, ver4, ver5, ver6, ver7, ver8, ver9, ver10 from comp_book_info where ver1, ver2, ver3, ver4, ver5, ver6, ver7, ver8, ver9, ver10 != NULL; and the error that I am getting is: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ' ver2, ver3, ver4, ver5, ver6, ver7, ver8, ver9, ver10 != NULL' at line 1 i need to count how many ver* I get back that aren't NULL, but I am not getting anything back. . . . . I am attaching a screenshot of the table. . any ideas? [attachment deleted by admin] Link to comment https://forums.phpfreaks.com/topic/88955-solved-i-am-doing-something-wrong-in-this-query-but-i-have-no-idea-what/ Share on other sites More sharing options...
amites Posted February 1, 2008 Share Posted February 1, 2008 I could be off but I think your where statement is bad try select ver1, ver2, ver3, ver4, ver5, ver6, ver7, ver8, ver9, ver10 from comp_book_info where ver1 != NULL AND ver2 != NULL AND ver3 != NULL; Link to comment https://forums.phpfreaks.com/topic/88955-solved-i-am-doing-something-wrong-in-this-query-but-i-have-no-idea-what/#findComment-455640 Share on other sites More sharing options...
2tonejoe Posted February 1, 2008 Author Share Posted February 1, 2008 thanks! Link to comment https://forums.phpfreaks.com/topic/88955-solved-i-am-doing-something-wrong-in-this-query-but-i-have-no-idea-what/#findComment-455643 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.