Popular Tutorials
HTML
View allJavaScript
View allPage Index
Popular Tutorials
HTML
View allJavaScript
View allPopular Exercises
Page Index
MySQL IS NOT NULL
MySQL IS NOT NULL condition is used to check the NOT NULL value in the expression. It is used with SELECT, INSERT, UPDATE and DELETE statements.
Syntax: expression IS NOT NULL
It specifies a value to test if it is not NULL value.
Let us consider table citizen with this data
select * from citizen where city IS NOT NULL;
Let's move on to use of BETWEEN in MySQL
Share this page on :
© 2022 AnalyzeCode.com All rights reserved.