摘要:
<?xml version="1.0"?><!DOCTYPE mycat:schema SYSTEM "schema.dtd"><mycat:schema xmlns:mycat="http://io.mycat/"> <schema name="hm_system" checkSQLschema= 阅读全文
摘要:
取出数据-->生成序号-->排序,所以排序都是要放到最后的 阅读全文
摘要:
--like模糊查询,通配符:'%'表示代替一个或多个字符,'_'表示代替一个字符select * from v_test where v_name like '_BCE%'; 转义字符:可以把通配符('%','_')转义为字符,而非其原意 select * from v_test where v_ 阅读全文
摘要:
链接:https://code.hcharts.cn/hcharts.cn/hhhhav 阅读全文
摘要:
直接设置属性yAxis.allowDecimals为false即可 例子链接如下:https://code.hcharts.cn/highcharts/hhhhnm 阅读全文
摘要:
select round(dbms_random.value()*10) random_value from dual 阅读全文
摘要:
在oracle中where关键字是无法和聚合函数一起使用的,having可以让我们筛选分组后的各组数据。 用法: SELECT column_name, aggregate_function(column_name)FROM table_nameWHERE column_name operator 阅读全文