1
edit
Changes
→2- Modifying Syntax
<source lang=java>
/* MySQL version of creating table script */
create table test.RangeTest(
id int auto_increment not null, s varchar(1) character set utf8 null, bin varbinary(1) null,
<source lang=java>
/* PostgreSQL version of creating table script */
CREATE TABLE test.RangeTest(
id integer not null, s text null, bin bytea null,