時(shí)間:2024-02-05 12:47作者:下載吧人氣:22
mysql使用auto_increment的語(yǔ)法實(shí)現(xiàn)表字段自增。
在PostgreSQL中,具有數(shù)據(jù)類型為smallserial,serial,bigserial的字段具有自增特性。
create table company(
id serial primary key,
name text not null,
age int not null,
address char(50),
salary real
);
網(wǎng)友評(píng)論