摘要:
一、测试表: 1. 学生表 CREATE TABLE `students` ( `id` int NOT NULL AUTO_INCREMENT, `name` varchar(12) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `gender` tinyint 阅读全文
摘要:
MySQL的常用函数 一、条件判断函数 # 1. if(表达式,值1,值2):若表达式成立(为true)则返回值1,否则返回值2 mysql> select if(0=false,'true','false'); + + | if(0=false,'true','false') | + + | tr 阅读全文