我是个初学者什么都不懂 希望各位高手多多帮忙

解决方案 »

  1.   

    create table 表名(
      字段名1 字段类型,
      字段名2 字段类型
      

  2.   

    会在sql server里建表的话,Oracle就没问题。
      

  3.   

    [Quote=引用 5 楼 tianxiaocui2007 的回复:]
    引用 2 楼 lyfwjj 的回复:
    create table 表名(
      字段名1 字段类型,
      字段名2 字段类型

    增加列ALTER table 表名 add(字段,类型 ,默认值 ,null/not null )
      

  4.   

    create table 表名( 
      字段名1 字段类型, 
      字段名2 字段类型 
    )tablespace tablespace_name;
      

  5.   

    LZ,这个SQL都很通用啊,
     不过ORACLE的规范很严谨