摘要:
select `r`.* from `table_aaa` as `r` left join `table_bbb` as `m` on `r`.`idNo` = `m`.`me_no` where ((CONVERT(r.money,DECIMAL(10,2)) >= 1) and (CONVER 阅读全文
摘要:
1 use mysql; 2 select host, user, authentication_string, plugin from user; 3 update user set host='%' where user='root'; 123 三个语句顺序执行 完毕后重新启动mysql服务 就 阅读全文
摘要:
概念: 动态语言(弱类型语言)是运行时才确定数据类型的语言,变量在使用之前无需申明类型,通常变量的值是被赋值的那个值的类型。比如Php、Asp、JavaScript、Python、Perl等等。 var s ="hello"; var i = 0; var b = true; 静态语言(强类型语言) 阅读全文