Skip to content

Instantly share code, notes, and snippets.

View abhinavraj23's full-sized avatar
🎯
Focusing

Abhinav Raj abhinavraj23

🎯
Focusing
View GitHub Profile
@AlexeyKupershtokh
AlexeyKupershtokh / dump.sql
Last active March 21, 2024 02:00
Postgres DDL to Clickhouse converter
select
concat(
'create table ',
table_name,
'(',
string_agg(
concat(
column_name,
' ',
CASE when is_nullable = 'YES' THEN 'Nullable(' END,
@abhinavraj23
abhinavraj23 / GitandGithub.md
Last active February 20, 2019 13:24
Introduction to GIt and Github

Topics to be covered

  • What is git and it's application
  • Git bash installation for windows
  • A brief on open source
  • Basic git commands
    • Git init
    • Git push and pull
    • Git clone
    • Git status
  • Git remote add origin