zoukankan      html  css  js  c++  java
  • CUBRID学习笔记 30 复制表结构 cubrid教程

    语法

    CREATE {TABLE | CLASS} <new_table_name> LIKE <old_table_name>

     

     

     

    如下

     

     

    CREATE TABLE a_tbl(

    id INT NOT NULL DEFAULT 0 PRIMARY KEY,

    phone VARCHAR(10));

    INSERT INTO a_tbl VALUES(1,'111-1111'), (2,'222-2222'), (3, '333-3333');

     

    --creating an empty table with the same schema as a_tbl

    CREATE TABLE new_tbl LIKE a_tbl;

    SELECT * FROM new_tbl;

     

    There are no results.

     

    ;schema a_tbl

     

    === <Help: Schema of a Class> ===

     

     

     <Class Name>

     

         a_tbl

     

     <Attributes>

     

         id                   INTEGER DEFAULT 0 NOT NULL

         phone                CHARACTER VARYING(10)

     

     <Constraints>

     

         PRIMARY KEY pk_a_tbl_id ON a_tbl (id)

     

    Current transaction has been committed.

     

    ;schema new_tbl

     

    === <Help: Schema of a Class> ===

     

     

     <Class Name>

     

         new_tbl

     

     <Attributes>

     

         id                   INTEGER DEFAULT 0 NOT NULL

         phone                CHARACTER VARYING(10)

     

     <Constraints>

     

         PRIMARY KEY pk_new_tbl_id ON new_tbl (id)

     

     

    Current transaction has been committed.

     

  • 相关阅读:
    JSON2 源代码
    C#冒泡排序详解
    SqlHelper 带详细中文注释
    js-cookie
    淘宝镜像(cnpm) 安装
    vue全局刷新
    webpack-npm安装-查看当前版本
    半环进度条
    Parameter 'name' implicitly has an 'any' type.
    vue3.0-如何切换路由-路由模式ts
  • 原文地址:https://www.cnblogs.com/wang2650/p/5287794.html
Copyright © 2011-2022 走看看