informix資料庫如何建立資料庫,建立資料庫表,建立索引

2022-02-24 06:08:06 字數 2133 閱讀 7672

1樓:尋羲實鴻煊

為t_kc表的cname欄位建立索引。最後當然主鍵當然是sid了

一定要標好哦~~·informix第乙個真正支援sql語言的關聯式資料庫產品是informix

se(standardengine

2樓:匿名使用者

1、有輸入輸出

create procedure pnormalparam(f1 integer, f2 varchar(10))

returning integer;

begin

on exception

rollback work;

return -1;

end exception

begin work;

insert into t1 values(f1, f2);

commit work;

return 0;

end;

end procedure;

2、返回記錄集

create procedure preturnset() returning integer, varchar(10);

define i integer;

define j varchar(10);

foreach

select f1, f2 into i, j from t1return i, j with resume;

end foreach;

end procedure;

3、你可能語法不對,也可能你查詢的值不唯一,或者是你沒有正確的返回。

希望對你 有幫助。

3樓:匿名使用者

informix分為windows系統下,和linux系統下的,不知道你需要的是哪種

mysql資料庫怎麼建立索引

4樓:妮妮愛吃核桃

普通索引 新增index

alter table `table_name` add index index_name ( `column` )

下面演示下給user表的name欄位新增乙個索引

mysql資料庫如何建立索引

mysql資料庫如何建立索引

主鍵索引 新增primary key

alter table `table_name` add primary key ( `column` )

mysql資料庫如何建立索引

mysql資料庫如何建立索引

唯一索引 新增unique

alter table `table_name` add unique ( `column` )

mysql資料庫如何建立索引

全文索引 新增fulltext

alter table `table_name` add fulltext ( `column`)

mysql資料庫如何建立索引

如何新增多列索引

alter table `table_name` add index index_name ( `column1`, `column2`, `column3` )

mysql資料庫中怎麼建立索引

5樓:匿名使用者

1.新增primary key(主鍵索引)

mysql>alter table `table_name` add primary key ( `column` )

2.新增unique(唯一索引)

mysql>alter table `table_name` add unique (

`column`

) 3.新增index(普通索引)

mysql>alter table `table_name` add index index_name ( `column` )

4.新增fulltext(全文索引)

mysql>alter table `table_name` add fulltext ( `column`)

5.新增多列索引

mysql>alter table `table_name` add index index_name ( `column1`, `column2`, `column3` )

informix資料庫怎麼刪除唯一索引的語句

informix直接刪除唯一 索引抄的語法 drop index 索引名 可做如下測試 1 建立表 create table tab yzh test 01 product id decimal 20,0 product no varchar 40 cust level varchar 10 2 建...

mysql如何建立資料庫的檢視設計

在 sql 中,視來圖是基於 sql 語句的結果自集的視覺化的表。檢視包含行和列,就像乙個真實的表。檢視中的字段就是來自乙個或多個資料庫中的真實的表中的字段。我們可以向檢視新增 sql 函式 where 以及 join 語句,我們也可以提交資料,就像這些來自於某個單一的表。例子建立檢視 create...

如何選擇合適的資料庫,如何選擇資料庫?

如何選擇資料庫 一般來講,資料分析的查詢不會直接從生產環境的資料庫來讀取資料,一方面是影響線上效能,另一方面是oltp的表結構設計更多的是面向插入,而不是讀取。如何來選擇合適的資料庫做資料分析呢?本文給出了四方面的考量,拋磚引玉。1.客戶要分析什麼樣的資料 2.客戶分析的資料量是多少 3.客戶工程師...