ABAbhijit Barikincodewithabhijit.hashnode.dev·Dec 25, 2022 · 2 min read1831. Maximum Transaction Each DaySQL Schema Table: Transactions +----------------+----------+ | Column Name | Type | +----------------+----------+ | transaction_id | int | | day | datetime | | amount | int | +----------------+----------+ transacti...00
ABAbhijit Barikincodewithabhijit.hashnode.dev·Dec 11, 2022 · 2 min read1435. Create a Session Bar ChartSQL Schema Table: Sessions +---------------------+---------+ | Column Name | Type | +---------------------+---------+ | session_id | int | | duration | int | +---------------------+---------+ session_id is the p...00
ABAbhijit Barikincodewithabhijit.hashnode.dev·Dec 11, 2022 · 2 min readleetcode 1303 - Find the Team SizeDescription Table: Employee +---------------+---------+ | Column Name | Type | +---------------+---------+ | employee_id | int | | team_id | int | +---------------+---------+ employee_id is the primary key for this table. Each ro...00
ABAbhijit Barikincodewithabhijit.hashnode.dev·Nov 26, 2022 · 2 min readShell Scripting part-2| Variable & scopeVariables are place holders to hold values. Variables are key-value pairs. In Shell programming, there are no data types. Every value is treated as text type or string type. All variables are divided into 2 types-- Environment variables / predefined...00
ABAbhijit Barikincodewithabhijit.hashnode.dev·Nov 22, 2022 · 3 min readReported Posts II Problem LeetCode Problem 1132.Description Table: Actions +---------------+---------+ | Column Name | Type | +---------------+---------+ | user_id | int | | post_id | int | | action_date | date | | action | enum | | ext...00