有条件更新表中的数据时,条件怎么输入?

来源:4-3 Oracle 修改数据

mkw1351

2016-06-03 19:48

在有条件更新表中的数据时,如条件设定为:where student_name= 空,也就是说我的学生名字字段中没有写名字的行;另外一种就是我的表中where  regdate=系统时间,这个系统时间我在输入时怎么来写,如果系统时间显示为:03-6月 -16

写回答 关注

2回答

  • mkw1351
    2016-06-05 10:36:01

    update student set student_name='pull' where regdate='';

  • 活雷锋0
    2016-06-04 09:46:21

    第一个问题语句这样写:update table_name(表名) set student_name = '空';

    第二个问题语句这样写:update table_name(表名)set regdate=sysdate;。

    活雷锋0

    第一个问题更正:第一个问题语句这样写:update table_name(表名) set student_name = '';

    2016-06-04 09:50:25

    共 1 条回复 >

Oracle数据库开发必备利器之SQL基础

为你带来Oracle开发必备的sql基础,为后续课程学习打下好的基础

160642 学习 · 641 问题

查看课程

相似问题