哈嘍,歡迎來到我們的
狗刨網,今天我們講了很多有趣的東西,有資料庫的約束,還有arrylist的應用,首先我們每天都會有新的更新,歡迎來到我們
的**上看哦。
一、列的基本操作
增加一列
alter table 表名 add 列名 型別(長度) null
例如:alter table student add age int null
更改列型別
alter table 表名 alter column 列名資料型別(長度)
alter table teacher alter column age varchar(3)
刪除列
alter table 表名 drop column 列名
alter table teacher drop column age
主鍵約束
alter table 表名add constraint 主鍵別名primary key (主鍵列)
alter table teacher add constraint t_pk primary key(id)
唯一約束
alter table 表名 add constraint 唯一鍵別名unique (唯一鍵列)
alter table teacher add constraint t_un unique(name)
預設約束
alter table 表名 add constraint 預設鍵別名 default (『預設值』) for 預設鍵
alter table teacher add constraint t_de default('男') for ***
檢查約束
alter table 表名 add constraint 檢查鍵別名check(stuage>=15 andstuage<=40)
alter table teacher add constraint t_ch check(age>=15 and age<=40)
刪除約束
alter table 表名 drop constrant 約束別名
二、arrylist類
特點:1、有序的物件列表。
2、沒有固定的大小,可以根據需要不斷增長。
3、預設大小為16個元素,當新增第17個元素時會自動擴充套件到32個。
4、可以顯示的指定其容量。
5、可以儲存不同型別的元素,因為所有arrylist中的元素都是物件。
list:泛型集合可以約束集合內的元素型別,編譯時檢查型別約束,無需裝箱拆箱操作
加上using system.collections.generic;
listlist=new list();
listlist = new list();
三、泛型集合
list《物件》
listlist=new list();
list.add("aaa");
list.add("bbb");
list.add("ccc");
foreach (string i in list)
2、arraylist 的方法:
--add(object):把乙個物件新增到 arraylist 的末尾
--insert(index,object):在指定位置插入乙個物件
--remove(object):移除乙個物件
--removeat(index):移除乙個物件
--clear():移除所有元素
--sort:對arraylist 中的元素進行排序
這就是我們今天講的主要內容,我們每天都會更新新的內容喲,歡迎來到我們的狗刨網,俗話說每天的進步就在於一點一滴的積累,每天自己進步多
一點,收穫就非常大,歡迎來我們的
狗刨網看喲。
資料庫之基本操作和儲存引擎
一 知識儲備 資料庫伺服器 一台計算機 對記憶體要求比較高 資料庫管理系統 如mysql,是乙個軟體 資料庫 oldboy stu,相當於資料夾 表 student,scholl,class list,相當於乙個具體的檔案 記錄 1 susan 158426544 22,相當於檔案中的一行內容 二 ...
資料庫基本操作和知識
一 資料庫基本操作 1 開啟mysql服務命令 net start mysql 2 進入mysql的兩種方式 明文進入 mysql uroot proot 格式 mysql u帳號 p密碼 密文進入 mysql uroot p 按enter會提示你輸入密碼 enter pssword 此時你寫的密碼...
Unity學習之資料庫基本操作
unity學習 筆記,希望對朋友們有所幫助 什麼是sql?sql語言,是結構化 查詢語言 sql語言是一種資料庫 查詢和程式語言,用於訪問 資料以及查詢 更新和管理關聯式資料庫 系統 同時也是資料庫指令碼檔案的副檔名。為何要使用sql?減少了資料的冗餘度,從而大大地節省了資料的儲存空間 實現資料資源...