老师,macbook安装oracle的时候安装完了Docker以后在哪里运行那个啊?
老师 你上课用的那个employees表有吗
老师的decode函数 里面写了四个参数
sum(decode(to_char(hire_date,'yyyy'),'2003',1))
那要是直接这么写也对吧 就是不加后面那个0 要是年份2003直接给1
第四题 四舍五入怎么写呢 好像不能用单行函数嵌套啊
//更新departments表中department_id为3的数据,将部门换成教学部,将location_id 换成6 public void updateDepartments(String department_name,int location_id,int department_id){ Connection conn=null; Statement state=null; try{ Class.forName("com.mysql.cj.jdbc.Driver"); conn=DriverManager.getConnection("jdbc:mysql://localhost:3306/bjsxt?useUnicode=true&characterEncoding=utf-8&serverTimezone=GMT","root","mysql"); state=conn.createStatement(); String sql="update departments d set d.department_name='"+department_name+"',d.location_id="+location_id+"where d.department_id="+department_id; int flag=state.executeUpdate(sql); System.out.println(flag); }catch (Exception e){ e.printStackTrace(); }finally { if(state!=null){ try { state.close(); } catch (SQLException throwables) { throwables.printStackTrace(); } } if(conn!=null){ try { conn.close(); } catch (SQLException throwables) { throwables.printStackTrace(); } } } } public static void main(String[] args) { jdbcTest test=new jdbcTest(); //test.insertDepartments("研发部",8); test.updateDepartments("教学部",6,3); } }
老师您好,在更新数据库这节,拼接的更新语句的字符串检查了几遍,没有找到问题,报错
package com.bjsxt; import java.sql.Connection; import java.sql.DriverManager; import java.sql.SQLException; import java.sql.Statement; public class jdbcTest { //定义一个方法,向departments表中添加一条数据 public void insertDepartments(String department_name,int location_id){ Connection conn=null; Statement state=null; try { //注册驱动 Class.forName("com.mysql.jdbc.Driver"); //通过反射jar包中的Driver类来获得驱动对象 //创建链接 conn=DriverManager.getConnection("jdbc:mysql://localhost:3306/bjsxt?useUnicode=true&characterEncoding=utf-8","root","root"); String sql="insert into departments values(default,'"+department_name+"',"+location_id+")"; state=conn.createStatement(); int flag=state.executeUpdate(sql); System.out.println(flag); } catch (Exception e) { e.printStackTrace(); }finally { if(state!=null){ try { state.close(); } catch (SQLException throwables) { throwables.printStackTrace(); } } if(conn!=null){ try { conn.close(); } catch (SQLException throwables) { throwables.printStackTrace(); } } } } public static void main(String[] args) { jdbcTest test=new jdbcTest(); test.insertDepartments("研发部",8); } }
您好老师,按照视频中的步骤向数据库中添加数据报错,这个什么原因呢
老师我这电脑配置不行?
老师这个报错如何解决
package com.database; import java.sql.Connection; import java.sql.DriverManager; import java.sql.SQLException; import java.sql.Statement; public class JdbcTest { //向departments表中添加一天数据 public void insertDepartments(String department_name,int location_id) { Connection conn = null; Statement state = null; //驱动注册 try { Class.forName("com.mysql.jdbc.Driver"); //创建连接 conn = DriverManager.getConnection("jdbc:mysql://192.168.0.102:3306/bjsxt?useunicode=true&characterEncoding=utf-8", "root", "root"); String sql ="insert into departments values(default,'"+department_name+"',"+location_id+")"; state = conn.createStatement(); int flag = state.executeUpdate(sql); System.out.println(flag); } catch (Exception e) { // TODO Auto-generated catch block e.printStackTrace(); }finally { if(state != null) { try { state.close(); } catch (SQLException e) { // TODO Auto-generated catch block e.printStackTrace(); } } if(conn != null) { try { conn.close(); } catch (SQLException e) { // TODO Auto-generated catch block e.printStackTrace(); } } } } public static void main(String[] args) { JdbcTest test = new JdbcTest(); test.insertDepartments("研发部",8); } }
老师,这个还是不是还可以使用直接创建索引吧?create index indexname on 表名(列名)
老师,自动增长auto_increment和索引有没有关系,二者的作用是什么不太明白
public class jdbcTest { public void insertDepartments(String department_name,int location_id){ Connection conn =null; Statement state =null; try { //驱动注册 Class.forName("com.mysql.jdbc.Driver"); //创建连接 conn = DriverManager.getConnection("jdbc:mysql://localhost:3306/bjsxt?useUnicode=true&characterEncoding=utf-8","root","19981015wxj"); String sql = "insert into departments value(default,'"+department_name+"',"+location_id+")"; state = conn.createStatement(); int flag = state.executeUpdate(sql); System.out.println(flag); } catch (Exception e) { e.printStackTrace(); }finally { if (state!=null){ try { state.close(); } catch (SQLException throwables) { throwables.printStackTrace(); } } if (conn!=null){ try { conn.close(); } catch (SQLException throwables) { throwables.printStackTrace(); } } } } public static void main(String[] args) { jdbcTest test = new jdbcTest(); test.insertDepartments("研发部",8); } }
老师,我在插入数据时如果department_name插入的是中文就会报错
但如果department_name插入的是英文又没问题
这是为什么?
老师这个软件中在图片左上角那个 提交和回滚是什么意思呢 不点行不行啊
老师,我在做实操的时候第31题不知道该如何解答
31. 求部门经理人中平均薪水最低的部门名称
我是用hr登录oracle来做的
以下是我的答案:
SQL> select min(em.avg_sal), de.department_name from (select avg(salary) avg_sal, department_id from (select distinct manager.last_name, manager.department_id, manager.salary from employees worker, employees manager where worker.manager_id = manager.employee_id) ma group by ma.department_id)em , departments de where em.department_id=de.department_id;
这是数据库报的错误:
樊老师 我想请问下序列跟索引都是用整数去标识主键 便于我们检索信息 它们两者有什么区别呢?有了索引就可以了 为什么还要创建序列呢?
不让定义默认的内容是为啥呢 没有权限吗
非常抱歉给您带来不好的体验!为了更深入的了解您的学习情况以及遇到的问题,您可以直接拨打投诉热线:
我们将在第一时间处理好您的问题!
关于
课程分类
百战程序员微信公众号
百战程序员微信小程序
©2014-2025百战汇智(北京)科技有限公司 All Rights Reserved 北京亦庄经济开发区科创十四街 赛蒂国际工业园网站维护:百战汇智(北京)科技有限公司 京公网安备 11011402011233号 京ICP备18060230号-3 营业执照 经营许可证:京B2-20212637