sql创建表

    技术2022-05-11  138

    drop table if exists customer create table customer (     CID integer not null,     USERNAME varchar(255),     PASSWORD varchar(255),     primary key (CID) )

    最新回复(0)