Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 

Search In

4 Reasons Why Small Businesses Should Use Artificial Intelligence

Artificial Intelligence (AI) is no longer a futuristic concept and many large corporations are using it to impact their sales and customer service. Small businesses should be following suite but AI can be overwhelming, complicated and intimidating le

How Organizations are Using Blockchain to Prevent Cyber Attacks

  Nowadays, organizations are highly vulnerable to cyber attacks. In this digital business environment, data playing a crucial role for almost every organization. Therefore, preventing data has become the highest priority for every organizati

How to Copy entire date into other table in SQL Database

SQL Copy Table If you want to copy a SQL table into another table in the same SQL database then you can do with the copy statement . Syntax -> select * into destinationTable from sourceTable ; Example -> **Student name** **St

SQL NULL Values

missing or unknown data is considered as null values.It indicates that value is not applicable for a set of attributes. NULL Value is different from an empty or zero value To test for NULL values we use comparison operators, such as =, <, or &

Call a procedure with in procedure in SQL server

Call a procedure with in procedure in SQL server :- While working in sql Some times you need to Calling one stored procedure within another stored procedure. So you can implement this using below sample code:--- //Store Procedure 1 CREATE PROCEDUR

How to search a specific column in all the tables of database?

Hello All, Working with the SQL Database, I wanted to search a specific column in all the tables of database and to do that I use the following code packet. SELECT TABLE_NAME,COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE COLUMN_NAME LIKE '% You

Update query with inner join

Hello readers, today we will discuss about the "SQL query with INNER JOIN". UPDATE (SELECT table1.value as OLD, table2.CODE as NEW FROM table1 INNER JOIN table2 ON table1.value = table2.DESC WHERE table1.UPDATETYPE='blah' ) t SET t.OLD = t.NEW

Find out a particular column throughout the database in Postgresql

Previously got a situation where I needed to get the list of all the tables where a particular column lets say partner_id exists, might be useful for you too. Just run the following query in PostgreSQL: SELECT * FROM information_schema.columns WHE

SQL query to add column's values, containing null values

Write a sql query to add column's value , containing null values also in records. But the sum of the added columns must be numeric only. Output cannot be null. It can be achieve by two ways. SELECT (COALESCE(Column1, 0) + COALESCE(Column2, 0)) as

Mirroring in SQL Server

Data mirroring refers to the real-time operation of copying data, as an exact copy, from one location to a local or remote storage medium. In computing, a mirror is an exact copy of a dataset. Most commonly, data mirroring is used when multiple exact

prev 1 2 54
Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Fill out the form below and instructions to reset your password will be emailed to you:
Reset Password
Fill out the form below and reset your password: