DBMS practical questions | SQL commands | DBMS Practical

Опубликовано: 02 Июнь 2026
на канале: Budelkhand Education
9
like

SQL Compiler Link = https://www.programiz.com/sql/online-...

Comments for more practical videos, or questions and projects.

COMMANDS THAT IS USED IN THE LECTURE

CREATE DATABASE college;
USE DATABASE college;

CREATE TABLE student (
name text(10),
rollno text(11),
adress text(30),
class text(20),
percentage int(3)
);


insert into student(name, rollno, address, class, percentage) values("Suneeta", "1001", "Sagar", "bsc", 65);


select * from student where percentage * 65;

= angle bracket