0% found this document useful (0 votes)
23 views1 page

CSE370 Lab1

Uploaded by

Ariful Hasan
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
23 views1 page

CSE370 Lab1

Uploaded by

Ariful Hasan
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

create table developers(member_id int,name varchar(16),email varchar(24),

influence_count int,joining_date date,multiplier int);

insert into
developers(member_id,name,email,influence_count,joining_date,multiplier)
values(1,'Taylor Otwell','otwell@laravel.com',739360,'2020-6-10',10),
(2,'Ryan Dahl','ryan@nodejs.org',633632,'2020-04-22',10),
(3,'Brendan Eich','eich@javascript.com',939570,'2020-05-07',8),
(5,'Evan You','you@vuejs.org',982630,'2020-06-11',7),
(6,'Rasmus Lerdorf','lerdorf@php.net',937927,'2020-06-3',8),
(7,'Guido van Rossum','guido@python.org',968827,'2020-07-18',19),
(8,'Adrian Holovaty','adrian@djangoproject.com',570724,'2020-05-07',5),
(9,'Simon Willison','simon@djangoproject.com',864615,'2020-04-30',4),
(10,'James Gosling','james@java.com',719491,'2020-05-18',5),
(11,'Rod Johnson','rod@spring.io',601744,'2020-05-18',7),
(12,'Satoshi Nakamoto','nakamoto@blockchain.com',630488,'2020-05-10',10);

alter table Developers change column influence_count followers int;

update Developers set followers=followers+10;

select name, email, followers from Developers;

select name,((followers * 100/1000000)*(multiplier*100/20))/100 as efficiency from


Developers;

You might also like

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy