且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

如何删除空白行?

更新时间:2023-09-18 08:54:46

Delete from table1 
where ID=' '
and Name=' '
and Value=' '

Delete from table1 
where ID is null
and Name is null
and Value is null