5.用SQL命令查询所有学生的学号、姓名、总成绩、平均成绩。

2024-11-25 04:06:59
推荐回答(4个)
回答1:

## 简介

数据库在查询上的sql 语句 基本是没有差异的,

## 工具

mysql 数据库,windowds 7

## 步骤

  1. 打开mysql 数据库,点击新增查询
  2. select no,name,totalScore,avgScore from ScoreTable;

回答2:

用SQL命令查询所有学生的学号、姓名、总成绩、平均成绩。
select 学号,姓名,总成绩,(总成绩/总科数) from 表

回答3:

1.select student.Sno,Sname,sum,ave
from student,sc
where student.sno = sc.sno;

2.select *
from student,sc
where student.age <= 20;

3.update sc
set score = score * 1.1
where sc.course = 'A';

4.create view student_sc
as
select *
from student,sc;

回答4:

select 学号,姓名,总成绩,(总成绩/总科数) from 表