摘要:
/*System.out.println("请输入三个数字:");//输入三个数字,返回最大的那个。 int a,b,c,big; Scanner d = new Scanner(System.in); a = d.nextInt(); b = d.nextInt(); c = d.nextInt( 阅读全文
摘要:
1.普通查询 select * from 表格 查询所有内容 select 列名,列名 from 表格查询某几列 2.条件查询 select * from 表格 where 条件 条件查询 select * from 表格 where 条件1 and 条件2 条件之间并的关系 select * fr 阅读全文