資料庫筆記

2022-06-30 01:12:09 字數 1441 閱讀 2032

tostring("x2") 為c#中的字串格式控制符

x為     十六進製制

2為      每次都是兩位數

比如 0x0a ,若沒有2,就只會輸出0xa

假設有兩個數10和26,正常情況十六進製制顯示0xa、0x1a,這樣看起來不整齊,為了好看,可以指定"x2",這樣顯示出來就是:0x0a、0x1a。

1.刪除某一列

alter table 表名

drop column 列名

2.--增加某一列

alter table 表名

add sgender char(6)

3--修改資料型別

alter table studentinfo

alter column sgender char(14)

4.新增主鍵

alter table 表名

add constraint  pk_nn primary key(欄位名)

5--為性別新增預設約束,預設為男

alter table studentinfo

add constraint df_sgende default('男') for sgender

6--為年齡新增檢查約束 , 年齡必須在120之間

alter table studentinfo

add constraint ck_ cidd check(cid>=0 and cidd<=120)

7---增加外來鍵約束

alter table studentinfo

add constraint fk_dept foreign key(cid) references classinfo (cid)

8--刪除約束

alter table studentinfo

drop  constraint  約束名

9.-----刪除資料指定的資料

delete from grades

where stu_name='王博'

10---刪除某一列

alter table grades

drop column address

11----更新表grade的資料

update grades

set grade=100 where class_id=12

12----top 子句用於規定要返回的記錄的數目。

select top 2 stu_age     //返回這一列的前2行

from student

select top 2                      //返回改表的前2行

*from student

13-----選取50%的記錄

select top 50 percent *from student12       //返回改表的前半行

select *from student12

資料庫筆記

資料庫mariadb 基本操作 mysql secure installation 配置嚮導 mysql uroot p 登陸資料庫 enter password 輸入密碼 welcome to the mariadb monitor.commands end with or g.your mari...

資料庫筆記

1.資料庫分頁查詢 select from table limit startline,pagesize 從startline開始查詢pagesize大小行資料 2.級聯操作 當存在外來鍵約束時,主表若想刪除或修改資料,必須先修改副表中相關聯的資料.如果想直接修改或刪除主表資料,同時改變副表 資料就...

資料庫筆記

筆記記錄 左外連線left join 涉及表 student,fee,fee info三張表,截圖依次如下 兩張表應用 查詢1 查詢2 對比就可以看出區別,查詢2比查詢1多1條鳳姐的記錄 此條記錄的s.number沒有對應的f.feeid 查詢1 s.number找不到對應的f.feeid時,會自動...