codewithabhijit.hashnode.dev1831. Maximum Transaction Each DaySQL Schema Table: Transactions +----------------+----------+ | Column Name | Type | +----------------+----------+ | transaction_id | int | | day | datetime | | amount | int | +----------------+----------+ transacti...Dec 25, 2022·2 min read
codewithabhijit.hashnode.dev1435. Create a Session Bar ChartSQL Schema Table: Sessions +---------------------+---------+ | Column Name | Type | +---------------------+---------+ | session_id | int | | duration | int | +---------------------+---------+ session_id is the p...Dec 11, 2022·2 min read
codewithabhijit.hashnode.devleetcode 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...Dec 11, 2022·2 min read
codewithabhijit.hashnode.devShell 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...Nov 26, 2022·2 min read
codewithabhijit.hashnode.devReported Posts II Problem LeetCode Problem 1132.Description Table: Actions +---------------+---------+ | Column Name | Type | +---------------+---------+ | user_id | int | | post_id | int | | action_date | date | | action | enum | | ext...Nov 22, 2022·3 min read