求SQL語句怎麼寫

2023-01-26 07:50:32 字數 941 閱讀 4956

1樓:匿名使用者

1 select c_name,c_stu from class2 select top 5 * from class3 select * from class where c_stu>30 and c_type=1 and c_name like '%二班%'

4 select * from class order by c_stu asc,c_type desc

2樓:

select c_name,c_stu

from class

select top 5 c_name,c_stufrom class

select * from class where c_stu>30 and c_type=true and c_name='二班'

select * from class group by c_stu asc c_type desc

3樓:匿名使用者

select top 5 c_name,c_stu where c_stu>30 and c_type=true and c_name like '%二班%' order by c_name asc,c_type desc

4樓:南鄉鬥士

select top 5 c_name,c_stu from class where c_stu>30 and c_type=1 and c_name like '%二班%' order by c_stu asc,c_type desc

和樓上差不多

5樓:匿名使用者

select top(5) c_name,c_stu from class where c_stu>30 and c_type=1 and c_name like '%二班%' order by c_stu,c_type desc

sql查詢語句怎麼寫,sql彙總查詢的語句怎麼寫啊

如果表裡只是那幾列資料的話 select a.欄位名,b.欄位名 from 表 as a left join 表 as b on a.substring 欄位名,7,2 b.substring 欄位名,7,2 where a.欄位名 like 201008 and b.欄位名 like 201009...

sql語句中的替換怎麼寫,sql怎麼批量替換欄位裡的字串的?

說明,將字串abcdefg中的字母a替換為c select replace abcdefg a c 查一下sql server的聯機叢書,多方便啊 sql怎麼批量替換欄位裡的字串的?方法一 varchar和nvarchar型別是支援replace,所以如果你的text不超過8000可以先轉換成前面兩...

求高手幫寫一條SQL語句

問題 假設有張學生成績表 tb 如下 姓名 課程 分數 張三 語文 74 張三 數學 83 張三 物理 93 李四 語文 74 李四 數學 84 李四 物理 94 想變成 得到如下結果 姓名 語文 數學 物理 李四 74 84 94 張三 74 83 93 create table tb 姓名 va...