Donate

How To Check Nulls In MySQL Database Table

Assuming QuantityPerUnit is the field to be tested.
-- return products with no null values  
select * from products where QuantityPerUnit is not null;  
-- return products with null values  
select * from products where isnull(QuantityPerUnit);

Comments

Donate

Popular Posts From This Blog

WPF CRUD Application Using DataGrid, MVVM Pattern, Entity Framework, And C#.NET

Using Blazor QuickGrid Component In .NET 8, Entity Framework Core And SQL Server