建立表的SQL語句

2022-07-19 03:27:12 字數 1007 閱讀 3198

1樓:匿名使用者

這樣寫:

create table aaa

(aaa char(4) constraint 主鍵約束名字 primary key

)就可以了,也可以在最後加上clustered(聚集索引)或nonclustered(非聚集索引),主鍵約束名字也可以省略。

不過寫上主鍵約束名容易對其進行管理。

希望能幫到你!拜拜!^*^

2樓:

create table aaa (

aaa varchar2(25) not null)

3樓:

create table aaa(aaa primary key)

shezhi l zhujian moren jiushi bu wei kong de!

4樓:匿名使用者

create table [dbo].[aaa] (

[aaa] [char] (10) collate chinese_prc_ci_as not null

) on [primary]

5樓:匿名使用者

create table 'aaa' ('aaa' 字段型別 not null ,

primary key ( 'aaa' )

) type = 表型別

6樓:匿名使用者

sql語句如下:

create table [dbo].[aaa] ([aaa] [char] (10) collate chinese_prc_ci_as not null

) on [primary]

goalter table [dbo].[aaa] with nocheck add

constraint [pk_aaa] primary key clustered

([aaa]

) on [primary]go

ORACLE建立表的SQL語句,Oracle使用者建立的SQL語句

其實語法和sqlserver還是一樣的,給你舉個例子。create table stuinfo stuid int primary key,stuname varchar2 20 age int 其實沒有那麼為麻煩,你可以開啟oracle檢視編輯器。中顯示oracle語句,想要什麼語句你自己試吧!包...

在access中用sql語句建立資料庫後怎麼弄成表

create table 語句 create table 語句用於建立資料庫中的表。sql create table 語法 create table 表名稱 列名稱1 資料型別,列名稱2 資料型別,列名稱3 資料型別,資料型別 描述 integer size int size smallint si...

sql查詢語句,查詢表a。名字中含有表b名字的列

select a.名字列 from a a,b b where a.名字列 b.名字列 group by a.名字列 select from a where a.名字 in select 名稱 from b sql語句中的a.表名 c.表名 b.表名 是什麼意思啊?裡面 是什麼意思?是別名 from...