Files
student_manage_system/students/StudentsQuery.sql
T

27 lines
349 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;
desc students;
select *
from cast(student_manage_system as BINARY)
where age >30
join on
group by
having
order by
limit