|  | INSERT INTO `urls` | 
        
          |  | (`id`,`linkId`,`userId`,`target`,`type`,`order`,`active`,`name`,`createdAt`,`updatedAt`) | 
        
          |  | VALUES | 
        
          |  | (2,2,1,'https://example.me',NULL,1,true,'','2024-03-18 15:47:03','2024-03-18 15:47:03'), | 
        
          |  | (3,2,1,'https://example-1.com',NULL,2,true,'Test note Updated','2024-03-18 15:47:03','2024-03-18 15:47:03'), | 
        
          |  | (4,2,1,'https://example-2.com',NULL,3,true,'Another Note Updated','2024-03-18 15:47:03','2024-03-18 15:47:03'), | 
        
          |  | (7,2,1,'https://example-3.com',NULL,4,true,'A New Note','2024-03-18 15:47:03','2024-03-18 15:47:03'), | 
        
          |  | (NULL,2,1,'https://example-4.com',NULL,5,true,'A New Item Note','2024-03-18 15:47:03','2024-03-18 15:47:03') | 
        
          |  | ON DUPLICATE KEY UPDATE | 
        
          |  | `target`=VALUES(`target`), |