Files
student_manage_system/students/StudentsQuery.sql
T

13 lines
155 B
SQL
Raw Normal View History

show databases;
create database student_manage_system;
use student_manage_system;
show tables;
drop table students;
select * from students limit 50;