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
emp
Employee Department Interview Questions
TSql - Unroll inventory transactions and compute daily average
NAMES
12
BRYAN_BD
sql 7
sql
Gatoactual
Common Table Expression