Published in Abhima Database Technology·Jan 7Enums in PostgresSQLToday we are going discuss about Enum datatype with practical examples. Today we will see how to :- Create enum type in PostgresSql. Usage of enum in PostgresSql. Creating Enum type in PostgresSql:- To use enum we have to create enum type in our database. We can leverage postgres feature…Postgresql4 min readPostgresql4 min read
Published in Abhima Database Technology·Dec 31, 2022Array in Postgres SQL Part 2In our Previous article we have shown you the basics of Array Data type in Postgres SQL. Now in this article you will see some advance topics on Array data type. Array in Postgre SQL You would have seen Array in multiple programming languages but today we are going to see Array in Postgre SQL with…medium.com Today we will see how to :- Access Array using it’s Index Insert new value to an existing arrayPostgres4 min readPostgres4 min read
Published in Abhima Database Technology·Oct 5, 2022Array in Postgre SQLYou would have seen Array in multiple programming languages but today we are going to see Array in Postgre SQL with different data types. Let’s talk about Array constructor which is being use to form the array value. Array Constructor:- Array constructor is an expression that builds an array value. …Arrays3 min readArrays3 min read
Published in Abhima C# Programming·Sep 16, 2022Two most important and underrated methods used on string datatype in C#You have seen multiple string methods and most of them are very common ones but today I will give you two uncommon string methods which are rarely used but are very important. Consider a scenario where you have received a data in plain string which has values separated by some…C Sharp Programming2 min readC Sharp Programming2 min read
Published in Abhima Database Technology·Jul 17, 2022Type casting in PostgreSQLA Type cast specifies a conversion from one datatype to another. PostgreSQL accepts two equivalent syntax for type casting Using “CAST” Using “::” Using “CAST”:-The CAST is SQL specific syntax to convert the data into another datatype. Syntax:- CAST(<expression> AS <type>) As you can see in above syntax CAST is…Typecast2 min readTypecast2 min read
Published in Abhima C# Programming·May 15, 2022Some simple tips and tricks on Exception handling in C#.Today in this article we are going to see some tips and tricks to handle exception in C#. Don’t use try catch block in every method:- Using try catch block in every method is not going to help you in anyway instead, it makes your program more slow as it…Exception Handling3 min readException Handling3 min read
Published in Abhima JavaScript·May 15, 2022The most easiest way to append any value to the string in JavaScript using Template Literals.There are multiple ways in JavaScript to append variable value to a string. But, the most easy way to do it is by using Template Literal. First we will discuss other ways how we can achieve the same thing that template literals provides. There are three ways to append any…Template Literals3 min readTemplate Literals3 min read
Published in Abhima Database Technology·May 8, 2022Basic DML(Data Manipulation Language) statements in PostgreSQL.Today we will show you the basics of DML Statements in PostgreSQL like Insert, Update, Delete. First let’s understand what is DML and then we will discuss about DML Statements. DML is used to manipulate the table data through below SQL statements. Insert Update Delete Insert:- Insert statement is used to…Postgresql3 min readPostgresql3 min read
Published in Abhima Database Technology·May 1, 2022DDL(Data Definition Language) Statements in PostgreSQLToday we will show you basics of DDL Statements in PostgreSQL like Creating table, Editing a table, Truncating a table, Dropping a table, etc. First let’s understand what is DDL and then we will discuss about DDL Statements. …Postgres2 min readPostgres2 min read
Published in Abhima C# Programming·Apr 23, 2022A simple way to validate the data in C#Today we are going to see how we can validate the data in C# without writing too many lines of code. …C Sharp Programming2 min readC Sharp Programming2 min read