-
把Oracle的INSERT INTO note VALUES(note_sequ.nextVal,?,?,?) 转换成Mysql下的情况
日期:2009-12-08 | 分类:JAVA
Oracle下:
INSERT INTO note VALUES(note_sequ.nextVal,?,?,?)
Mysql下:
1. 把note表中的id改成auto_increment
2. INSERT INTO note VALUES(null,?,?,?)
http://www.eimhe.com/bbs/archiver/?tid-103660.html... -
把Oracle的CREATE SEQUENCE note_sequ; 转换成Mysql
日期:2009-12-08 | 分类:JAVA
Oracle下:
CREATE SEQUENCE note_sequ;
在Mysql下:
mysql> create table seq(id int not null auto_increment primary key);
http://topic.csdn.net/u/20081016/13/a5f85375-3e7a-4fb5-88c5-cbbb33719145.html...
共1页 1







