上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 24 下一页
摘要: --查询学生信息,按照年龄升序排列; SELECT * from stu ORDER BY age ; --查询学生信息,按照数学成绩降序排列; SELECT * from stu ORDER BY math desc; --查询学生信息,按照数学成绩降序排列,如果数学成绩一样,再按照英语成绩升序排 阅读全文
posted @ 2022-11-13 15:24 NiceTwocu 阅读(14) 评论(0) 推荐(0) 编辑
摘要: --基础查询 --查询 NAME 和 age两列 SELECT NAME , age FROM stu; --查询所有列的数据 SELECT * FROM stu; --查询地址信息 SELECT address from stu; --使用DISTINCT去除重复记录 SELECT DISTINC 阅读全文
posted @ 2022-11-10 00:21 NiceTwocu 阅读(23) 评论(0) 推荐(0) 编辑
摘要: package com.itheima; /* 学生类 */ public class student02 { //成员变量 private String name; private int age; public void setAge(int age) { this.age=age; // if 阅读全文
posted @ 2022-11-09 23:17 NiceTwocu 阅读(11) 评论(0) 推荐(0) 编辑
摘要: package com.itheima; /* 学生类 */ public class student01 { //成员变量 private String name;//给name设置private private int age; public void setAge(int a) {//设置se 阅读全文
posted @ 2022-11-09 23:06 NiceTwocu 阅读(14) 评论(0) 推荐(0) 编辑
摘要: ![image](https://img2022.cnblogs.com/blog/2426413/202211/2426413-20221109205108375-2028610736.png) 阅读全文
posted @ 2022-11-09 20:51 NiceTwocu 阅读(5) 评论(0) 推荐(0) 编辑
摘要: ![image](https://img2022.cnblogs.com/blog/2426413/202211/2426413-20221108222835850-1682314208.png) ![image](https://img2022.cnblogs.com/blog/2426413/202211/2426413-20221108222844852-1623633510.png) ![ 阅读全文
posted @ 2022-11-08 22:36 NiceTwocu 阅读(10) 评论(0) 推荐(0) 编辑
摘要: package com.itheima; /* 学生测试类 */ public class StudentDemo { public static void main(String[] args) { // 创建对象 student s = new student(); //给成员变量复制 s.na 阅读全文
posted @ 2022-11-08 22:26 NiceTwocu 阅读(85) 评论(0) 推荐(0) 编辑
摘要: #框架中的find_element import time from webdriver_helper import webdriver, get_webdriver from selenium.webdriver import chrome from selenium.webdriver.comm 阅读全文
posted @ 2022-11-08 22:11 NiceTwocu 阅读(38) 评论(0) 推荐(0) 编辑
摘要: package com.itheima; public class phonedemo01 { public static void main(String[] args) { //格式 phone p = new phone(); //使用成员变量 System.out.println(p.bra 阅读全文
posted @ 2022-11-07 22:05 NiceTwocu 阅读(15) 评论(0) 推荐(0) 编辑
摘要: package com.itheima; public class phone { //成员变量 String brang; int price; public void call(){ System.out.println("打电话"); } public void message(){ Syst 阅读全文
posted @ 2022-11-07 21:56 NiceTwocu 阅读(8) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 24 下一页