第八章上課練習

2021-09-26 08:47:53 字數 980 閱讀 2398

--向student表中插入資料

--語法:insert  [into]表名(列名)values(值列表)

insert into  student (studentno,loginpwd,studentname,***,gradeid,phone,address,borndate,email)

values('s1304002','pwd@123','張三','嬲',1'13843849490',default,'2018-12-13 09:0:51','[email protected]')

--切換資料庫:手動切換和命令切換

use myschool

--向student 表中插入資料

--語法:insert[into]表名(列名)values(值列表)

insert into student (列表名)

values(列表項) 

--插入多行資料

--從from的表中拿出select的列資料插入到into的表中

--表必須建立

insert into addresslist()

select studentname,address,email

from student

--插入多行資料

--表必須建立

insert into addresslist()

select'','',''union

select'','',''union

select'','',''union

select'','',''union

select'','',''union

select'','',''union

select'','',''

--修改資料:針對表中資料進行修改,where條件根據唯一資料進行限定

--語法:update表名set列名1=更新值1,列表名2=更新值2 where表中唯一表標識

update student set ***='男'

第八章 指標 第八章 指標

1 什麼是位址 include using namespace std int main 11 在堆中建立對像 我們既然可以在堆中儲存變數,那麼也就可以儲存對像,我們可以將對像儲存堆中,然後通過指標來訪問它 include using namespace std class human 14 在建構...

第八章 8 1 2節練習

決定開博寫文的時候,我已經看到第8章了。這裡,從第8章開始。當然之前的章節,會在後面補上。分界線 題目 練習8.1 編寫函式,接受乙個istream 引數,返回值型別也是istream 此函式須從給定流中讀取資料,直至遇到檔案結束標識時停止。將讀取的資料列印在標準輸出上。完成這些後,在返回留之前。對...

第八章 8 3 1節練習

題目 練習8.9 使用你為8.1.2節第乙個練習所寫的函式列印乙個istringstream物件的內容。個人解答 參考書上給出的範例,這個程式應該很容易寫出來 istream func istream in for auto i in buf cout endl in.clear return in...