第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定

Oracle數(shù)據(jù)庫(kù)開發(fā)必備利器之SQL基礎(chǔ)

難度入門
時(shí)長(zhǎng) 4小時(shí)14分
學(xué)習(xí)人數(shù)
綜合評(píng)分9.67
338人評(píng)價(jià) 查看評(píng)價(jià)
9.8 內(nèi)容實(shí)用
9.7 簡(jiǎn)潔易懂
9.5 邏輯清晰
使用as關(guān)鍵字設(shè)置字段別名的語法:select column_name as new_name,... from table_name;可以同時(shí)為多個(gè)字段設(shè)置別名。
使用column命令設(shè)置字段別名的語法:column column_name heading new_name,只能為一個(gè)字段設(shè)置別名。
完結(jié);
2018.5.16;
oralce的約束:
1.非空約束
2.主鍵約束
3.唯一約束
4.外鍵約束
5.檢查約束
約束的作用:
1.定義規(guī)則
2.確保數(shù)據(jù)的完整性
oralce的約束:
非空約束
主鍵約束
唯一約束
外鍵約束
檢查約束
約束的作用
定義規(guī)則
確保數(shù)據(jù)的完整性
--無條件刪除
delete from userinfo
--有條件刪除
delete from userinfo where username = 'yyy'
--無條件全部更新
update userinfo set userpwd = '111111'
update userinfo set userpwd ='111', email = '111@126.com'
--限制更新
update userinfo set userpwd = '123456' where username ='xxx'
2.0的速度聽起來很有感覺,我精神都好了很多,連下午必睡的時(shí)間,現(xiàn)在都不睡了
--創(chuàng)建表時(shí)復(fù)制(全部字段)
create table userinfo_new as select * from userinfo
--復(fù)制部分字段
create table userinfo_new1 as select id,username from userinfo

--在添加時(shí)復(fù)制全部數(shù)據(jù)
insert into userinfo_new select * from userinfo;
-- 在添加時(shí)復(fù)制部分?jǐn)?shù)據(jù)
insert into userinfo_new (id,username) select id,username from userinfo
挺完了約束。一個(gè)大上午。。。
--修改字段的名字
alter table userinfo rename column email to new_email

--表改名
rename userinfo to new_userinfo
select * from new_userinfo
--更改字段的數(shù)據(jù)類型(更改長(zhǎng)度/類型)
alter table userinfo modify remarks varchar2(400);
alter table userinfo modify userpwd number(6,0);

--刪除字段
alter table userinfo drop column remarks;
--創(chuàng)建表
create table userinfo
(
id number (6,0),
username varchar2(20),
userpwd varchar2(20),
email varchar2(30),
regdate date
);
--查詢
select * from userinfo;
2018.5.15
日常簽到;
課程須知
只要知道數(shù)據(jù)庫(kù)是什么就可以來學(xué)習(xí)本課程呦!
老師告訴你能學(xué)到什么?
掌握Oracle的SQL語句基礎(chǔ),為后續(xù)的課程學(xué)習(xí)打好基礎(chǔ)。

微信掃碼,參與3人拼團(tuán)

微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)

友情提示:

您好,此課程屬于遷移課程,您已購(gòu)買該課程,無需重復(fù)購(gòu)買,感謝您對(duì)慕課網(wǎng)的支持!

本次提問將花費(fèi)2個(gè)積分

你的積分不足,無法發(fā)表

為什么扣積分?

本次提問將花費(fèi)2個(gè)積分

繼續(xù)發(fā)表請(qǐng)點(diǎn)擊 "確定"

為什么扣積分?

舉報(bào)

0/150
提交
取消