Answers for "empty value in sql"

SQL
4

sql empty table

-- Quick, no possible rollback
TRUNCATE TABLE my_table;
-- With possible rollback
DELETE FROM my_table;
COMMIT;  -- or ROLLBACK;
Posted by: Guest on February-27-2021
0

t sql null or empty string

select * from vendor
where isnull(vendor_email,'') = ''
Posted by: Guest on August-17-2020

Code answers related to "SQL"

Browse Popular Code Answers by Language