從 學生 表中查詢所有年齡大於22歲的學生並顯示其姓名和年齡,寫出S

2021-04-14 23:40:54 字數 1128 閱讀 6824

1樓:尋覓於心中

這屬於很基礎的

baisql語句了,還需要加

du強學zhi習額,因為這就dao是基本的select - from - where語句。由於我

版不知道你字段名稱權和表名,就簡單寫一下吧。

select name,age from table where age>22

求解sql。設有學生表s(學號,姓名,性別,年齡)。查詢所有年齡小於等於20歲的男同學。並按年齡生成新列

2樓:天涯ni一角

你好,按年齡生成新列是什麼意思,是按年齡排序?:

select  學號,姓名,性別,年齡  from swhere 年齡<20

order by 年齡

3樓:匿名使用者

select 學號,姓名,性別,年齡 from s where 年齡<=20 and 性別='男'

order by 年齡

注意自己更換表名、欄位名、以及將中文標點換成英文標點。

mysql 資料庫題目 查詢student表中每個學生的姓名和年齡。

4樓:匿名使用者

select date_format(now(), '%y') - date_format(sbirthday, '%y') - (date_format(now(), '00-%m-%d')

< date_format(sbirthday, '00-%m-%d')) as age from student; 查出du

精確zhi

。。dao。。自己專

加名字屬

5樓:匿名使用者

select sname,datediff(year,sbirthday,getdate()) as nl

from student

getdate() --表示當

bai前時間du,zhi

daomysql當前時間是

回:now()還是getdate()?你試下答

6樓:匿名使用者

貌似oracle有乙個months_between函式,可以直接用的。

SQL語句查詢所有參加考試的學生,從Stu表中和Sco表中

select from score 成績表 where stuno 考號 in select stuno from student 思路是這樣的,學生表中有的考號在成績表中出現,就叫做參加考試了,更詳細的就是說,機試和筆試成績都不為null select sname from stu,sc wher...

EXCEL表中如何從A表中找到B表中對應的內容?

1 首先將關鍵資料輸入到單元格中,需要根據 公司現狀 資料提取到對應店名稱的 公司標準 列中。2 點選 fx 插入函式,選擇 vlookup 函式。3 然後在開啟的函式引數設定中根據下圖設定引數,切換為公式為 vlookup a2,d 2 e 5,2,0 4 點選回車生成計算結果並向下填充公式,即可...

學生 課程」資料庫中包含學生表 課程表 學生選課表表

看一下。等下寫寫。1.select sno,s from student where sname like 王 2.select sname from student wheresname not like 劉 3.select sname from student wheresage 20 4.s...