1.建立一張學生表:creat table student(
id integer ,(整型)
name text, (字元型)
*** text,
primary key(id) (以id號為關鍵字)
insert into student values( ); 增加一條記錄
update student set *** = ....where name = 'zhang'; 更改名為zhang的性別
delete from student where id = 2; 刪除一條記錄
drop table student 刪除一張表
select * from student 顯示表中的所有記錄
C語言中操作sqlserver資料庫案例教程
本文使用c語言來對sql server資料庫進行操作,實現通過程式來對資料庫進行增刪改查操作。作業系統 windows 10 實驗平台 vs2012 sql server 2008 odbc簡介 開放資料庫連線 open database connectivity,odbc 主要的功能是提供了一組用...
C 資料庫 資料庫基本操作
executenonquery方法 executescalar方法 executereader方法的區別 executenonquery 執行命令物件的sql語句,返回乙個int型別變數,如果sql語句是對資料庫的記錄進行操作 如記錄的增加 刪除和更新 那麼方法將返回操作所影響的記錄條數。execu...
資料庫 資料庫基本操作
操作練習 修改表結構 表資料的操作 實現 1 建立表 create table student stu no char 12 not null primary key,stu name varchar 20 not null gender tinyint 1 default1,age tinyint...