数据库表修改的简要总结

ALTER TABLE  m_stock_info  modify  stock_model   varchar(100) default  NULL ;



alter table v3x_common_guidmapper  add update_time timestamp    DEFAULT CURRENT_TIMESTAMP;





mysql:update v3x_common_guidmapper  set  update_time=sysdate()
oracle:update v3x_common_guidmapper  set  update_time=sysdate
sqlserver:update v3x_common_guidmapper  set  update_time=getdate();

 

你可能感兴趣的:(oracle,mysql)