数据库
文章平均质量分 65
爱~消逝
这个作者很懒,什么都没留下…
展开
-
SQL语句练习
Student表 Scores表 courses表 select * from demo_user where name = "黑熊精" select name asd,age cc from demo_user where name = "黑熊精" select name,age from demo_user where age<30 and sex="女" select name,age from dem...原创 2021-10-27 20:29:41 · 368 阅读 · 0 评论 -
JDBC操作
向数据库中添加数据 package cn.tedu.jdbc; import com.mysql.jdbc.Driver; import java.sql.*; //gdbc public class Hy5 { public static void main(String[] args) throws ClassNotFoundException, SQLException { Class.forName("com.mysql.jdbc.Driver");//原来它用了静原创 2021-08-07 16:43:59 · 139 阅读 · 0 评论