17 lines
210 B
SQL
17 lines
210 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;
|
|
|