mysql 常用幾條語句

2021-07-16 04:40:38 字數 692 閱讀 9112

1:設關聯式資料庫中乙個表s的結構為:s(sn,cn,grade),其中sn為學生名,cn為課程名,二者均為字元型;grade為成績,數值型,取值範圍0-100。若要更正王二的化學成績為85分,則可用

update s set grade=85 where sn=』王二』 and cn=』化學』
update語法格式如下:

update 表名稱 set 列名稱 = 新值 where 列名稱 = 某值

給定學生和成績的資料庫表,寫乙個sql語句求出每門課程的平均分。 

a,求學生每門課程總成績

b,按照課程吧學生成績列出來

c,按照不同課程求該課程的平均成績

d,求所有課程的綜合平均成績

sql中,下列涉及空值的操作,不正確的是?( )

name is null

name= null

namee is not null

not(name is null)

從表table_name中提取前10條記錄

sql語句的寫法是

select top 10 * from table_name

如果使用的mysql資料庫,則是

select * from table_name limit 0,10

幾條常用的sql查詢語句

select from table where type 1 以上是一條最簡單的sql條件查詢語句,那我們如果有2個type需要同時查詢呢?我們可以這樣寫 select from table where type 1 or type 2 如果,我們查出的結果是多個,且需要排序呢?關鍵字 order ...

oracle學習 記錄幾條常用的語句

1 往表中新增日期型 date 的資料,a insert into tabname values 1996 3 3 這種插入方式是錯誤的,正確方式如b所示 b 比如要日期型別為年 月 日格式 insert into tabname values to date 1996 3 3 yyyy mm dd...

常用mysql語句 常用MySql語句

新建資料表 drop table if exists ga game way create table ga game way id int 11 unsigned not null auto increment comment id primary key id using btree,主鍵 un...