摘要:
壹: where后面不能跟聚合函数(sum、avg、count、max、min) having后面可以跟 贰: where和having都能用: select goods_price,goods_name from sw_goods where goods_price>100 select good 阅读全文
摘要:
public class demo_sort { public static void main(String[] args) { //冒泡排序算法 int[] numbers=new int[]{1,5,8,2,3,9,4}; int i,j; for(i=0;i<numbers.length-1 阅读全文