Create Database Use Create Int Varchar: SQL0911 SQL0911 Student Id Name 30
Create Database Use Create Int Varchar: SQL0911 SQL0911 Student Id Name 30
Literal
select id ,' id has name',name from
student
Concantenation :
select 'Hello '+' Good Morning'
concantenate joins 2 strings.
Follow the below commands :
create table Product (name
varchar(50),descp varchar(50))
('Back
as
where id < 6
Logical operator
select * from student
where id = 6 or id =12
select * from student
where id = 100 and name='Banza'
Range operator
select * from student
where id between 1 and 6
select * from student
where id not between 1 and 6
In Keyword
select * from student
where name
in('Banza','Dhruv','Kanchan')
select * from student