问答详情
源自:4-3 Oracle 修改数据

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

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

提问者:mkw1351 2016-06-03 19:48

个回答

  • 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;。