Tạo thread_title
của bạn là
varchar(255) and Default value is NULL
và sử dụng truy vấn của bạn
CREATE TABLE IF NOT EXISTS `forumposts` (
`thread_title` varchar(255) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
INSERT INTO `forumposts` (`thread_title`) VALUES
('foo'),
('bar'),
(NULL);
SELECT thread_title FROM forumposts WHERE thread_title IS NOT NULL
ĐẦU RA
THREAD_TITLE
foo
bar