AVapexa vairagiinapexa.hashnode.dev·May 1, 2024 · 2 min readSQL Arithmetic OperatorsThe SQL reserved words and characters are called operators, which are used with a WHERE clause in a SQL query. In SQL, an operator can either be a unary or binary operator. The unary operator uses only one operand for performing the unary operation, ...00
AVapexa vairagiinapexa.hashnode.dev·Apr 30, 2024 · 1 min readHow to Truncate Table in SQL?A truncate SQL statement is used to remove all rows (complete data) from a table. It is similar to the DELETE statement with no WHERE clause. TRUNCATE TABLE Vs DELETE TABLE Truncate table is faster and uses lesser resources than DELETE TABLE comman...00
AVapexa vairagiinapexa.hashnode.dev·Apr 30, 2024 · 1 min readHow to Create a Table in SQL?SQL CREATE TABLE statement is used to create table in a database. If you want to create a table, you should name the table and define its column and each column's data type. Let's see the simple syntax to create the table. create table "tablename" ...00
AVapexa vairagiinapexa.hashnode.dev·Mar 30, 2024 · 4 min readKubernetes: Orchestrate Your ContainersKubernetes Kubernetes is an open-source Container Management tool that automates container deployment, container scaling, descaling, and container load balancing (also called a container orchestration tool). Kubernetes can group ‘n’ number of conta...00
AVapexa vairagiinapexa.hashnode.dev·Mar 30, 2024 · 7 min readDocker for Beginners: Containerizing Your ApplicationsDocker A service for managing containers is called Docker. Docker is an open platform for developing, shipping, and running applications. The entire purpose of Docker is to make it simple for developers to create apps, load them into containers, and ...00