below is the code:
以下是代码:
CREATE TABLE maintable (
Name varchar(10),
phone_number numeric(10)
);
INSERT INTO maintable
VALUES ("Max", 9896995632);
SELECT
*
FROM maintable;
create table #TempTable as
maintable;
CREATE TABLE mainbelow is the code:
以下是代码:
CREATE TABLE maintable (
Name varchar(10),
phone_number numeric(10)
);
INSERT INTO maintable
VALUES ("Max", 9896995632);
SELECT
*
FROM maintable;
create table #TempTable as
maintable;
CREATE TABLE main