資料庫的不常見操作

2021-09-03 01:20:08 字數 1266 閱讀 1158

/// 建立**

///

///

public void

createtable

(dbtable table)

else

if(nindex < table.fields.count)

strsql +

=","

; nindex++;}

strsql +

=")"

;executenonquery

(strsql)

;}包含架構資訊的 system.data.datatable

/// /// 獲取資料庫表名列表

///

///

public list

gettablenamelist()

return arrtable;

}

大小寫不敏感

sqlselect top 1 * from table1 查詢某個表中的首行資料

c#

public bool isfieldexisted

(string strtablename, string strfieldname)

} reader.

close()

;return false;

}

sqlalter table 表名稱 add 列名稱 列的資料型別

sqlalter table 表名稱 drop 列名稱

修改某錶刪除某列

sqldrop index table_name.index_name

drop table 表名稱

drop database 資料庫名稱

資料庫常見操作

一 oracle使用步驟 1 建立表空間 oracle的表是放在表空間中的,他沒有資料庫的概念 以system manager的身份登入plsql create tablespace datafile c oracle product data dbf size 10m autoextend on ...

資料庫的常見操作

資料庫日期操作 1.查詢各學生的年齡,只按年份來算 mysql 寫法一 select sid,sname,year now year sage 年齡 from student mysql 寫法二 select sid,sname,date format now y date format sage,...

MySQL資料庫常見操作

1.為所有使用者授權 grant all privileges on to 使用者名稱 identified by 密碼 2.資料庫基礎操作 1 登陸mysql資料庫 mysql u root p,回車後再輸入密碼即可 2 檢視所有資料庫 show databases 3 刪除某個資料庫 drop ...