Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 01b0e4e

Browse files
authored
Added tasks 195-197.
1 parent f859644 commit 01b0e4e

File tree

3 files changed

+10
-0
lines changed

3 files changed

+10
-0
lines changed
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Read from the file file.txt and output the tenth line to stdout.
2+
sed -n 10p file.txt
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Write your MySQL query statement below
2+
DELETE FROM Person
3+
WHERE Id NOT IN (SELECT id FROM (SELECT Email, MIN(Id) AS 'id' FROM Person GROUP BY Email) t)
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Write your MySQL query statement below
2+
SELECT SecondDate.id as Id
3+
FROM Weather SecondDate JOIN Weather FirstDate
4+
ON ADDDATE(FirstDate.recordDate,1) = SecondDate.recordDate
5+
AND SecondDate.temperature > FirstDate.temperature;

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /