例:
select col1 (some default value) from tblname;
SELECT COALESCE(column_name,default_value) FROM table_name;
您还可以阅读an article,其中比较了COALESCE和ISNULL.