Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
comparison and logical
create table student(id integer,name varchar(30),marks integer,primary key(id)); insert into student values(1,'abc',80),(2,'xyz',50),(3,'mpj',45); select * from student; select id,marks from student where marks<=50 and marks>35; select id,marks from student where marks=90 or marks=80; select id,marks from student where marks<>50 ;
run
|
edit
|
history
|
help
0
20181CSE0041
aa
reee
how can i mix both querys
Object Attributed Mapping Interview Question
Arif First Query
c12part2
12
Preppin Data Challenge - Week 9
SQL HW 1 Appline