
Featured
- 
            
              Find out a particular column throughout the database in PostgresqlPreviously got a situation where I needed to get t by Nitika.Verma
Tags
How to Insert Data From One Table to Another Table in SQL
                      How to Insert Data From One Table to Another Table in SQL
step1: Create two tables ContentTable1 Table and ContentTable2 Table 
CREATE TABLE ContentTable1
(
 ContentId1 int identity(1, 1) not null,
 ContentHeading1 nvarchar(100) NULL,
 ... 
                       
        
        
