摘要: 按回车键实现登录 按回车键实现登录 第一种方法: <html xmlns="http://www.w3.org/1999/xhtml" ><head> <title>Check Score</title><script language="JavaScript">function keyLogin( 阅读全文
posted @ 2016-12-20 17:24 日月心诚 阅读(2017) 评论(0) 推荐(0)
摘要: INSERT INTO 新表(字段1,字段2,.......) SELECT 字段1,字段2,...... FROM 旧表 阅读全文
posted @ 2016-12-20 17:09 日月心诚 阅读(505) 评论(0) 推荐(0)
摘要: oracle没有设置主键auto increment的功能,需要自己编写序列和触发器实现主键自动递增。 示例: 创建表menu: 一、创建表 create table menu( menuId number(10) not null primary key, name varchar2(40) no 阅读全文
posted @ 2016-12-20 16:44 日月心诚 阅读(5411) 评论(0) 推荐(0)