查询学生表中所有数据并保存到永久表STUDENT中:SELECT * FROM 学生表_____ TABLE STUDENT
举一反三
- SELECT * FROM Student 表示查询学生表Student中所有学生的信息。(<br/>)
- 查询学生表中学生人数 Select ()(*) from student
- 使用select * from student可以查询基本表student中的所有数据
- select ___ from student;查询student表中全部内容。
- 删除学生信息表student的所有数据,正确的语句为( )。 A: delete from student B: drop all from student C: delete all * from student D: drop table student