小肥羊要进步

2020年9月4日

SQL NULL Functions

摘要: 阅读全文

posted @ 2020-09-04 16:44 小肥羊要进步 阅读(84) 评论(0) 推荐(0) 编辑

函数:COALESCE()

摘要: 函数:COALESCE()这个函数主要用来进行空值处理,COALESCE(val1, val2, ...., val_n)返回第一个不为空的数值,如果都为空,就返回NULLeg:1.SELECT COALESCE(NULL, NULL, NULL, 'test1', NULL, 'test2');r 阅读全文

posted @ 2020-09-04 16:38 小肥羊要进步 阅读(339) 评论(0) 推荐(0) 编辑

MySQL IFNULL Functions

摘要: 阅读全文

posted @ 2020-09-04 16:15 小肥羊要进步 阅读(100) 评论(0) 推荐(0) 编辑

SQL Stored Procedures for SQL Server 存储过程

摘要: SQL Stored Procedures for SQL Server A stored procedure is a prepared SQL code that you can save, so the code can be reused over and over again. So if 阅读全文

posted @ 2020-09-04 16:06 小肥羊要进步 阅读(203) 评论(0) 推荐(0) 编辑

导航