Files
student_manage_system/students/StudentsQuery.sql
T

25 lines
315 B
SQL

show databases;
create database student_manage_system;
use student_manage_system;
show tables;
drop database student_manage_system;
drop table students;
select * from students limit 50;
desc students;
select *
from cast(student_manage_system as BINARY)
where age >30
join on
group by
having
order by
limit