Sử dụng coalesce()
:
select coalesce(Eprice, 0) as Eprice
Chỉ trong SQL Server, bạn có thể lưu hai ký tự với isnull()
:
select isnull(Eprice, 0) as Eprice
Sử dụng coalesce()
:
select coalesce(Eprice, 0) as Eprice
Chỉ trong SQL Server, bạn có thể lưu hai ký tự với isnull()
:
select isnull(Eprice, 0) as Eprice