Files
student_manage_system/students/StudentsQuery.sql
T

39 lines
574 B
SQL
Raw Normal View History

show databases;
create database student_manage_system;
use student_manage_system;
show tables;
drop database student_manage_system;
drop table students;
2026-09-23 02:19:58 +08:00
select * from students limit 200;
select * from scores limit 200;
select * from address limit 200;
select * from classes limit 200;
select * from company limit 200;
select * from employments limit 200;
select * from teachers limit 200;
select * from subject limit 200;
desc students;
# select *
# from cast(student_manage_system as BINARY)
# where age >30
# join on
# group by
# having
# order by
# limit