{"id":5546,"date":"2022-08-29T10:33:43","date_gmt":"2022-08-29T05:03:43","guid":{"rendered":"https:\/\/jassweb.com\/solved\/solved-i-am-inserting-excel-sheet-bulk-data-into-a-sql-database-table-now-i-need-to-split-the-table-into-multiple-tables-by-using-stored-procedure-closed\/"},"modified":"2022-08-29T10:33:43","modified_gmt":"2022-08-29T05:03:43","slug":"solved-i-am-inserting-excel-sheet-bulk-data-into-a-sql-database-table-now-i-need-to-split-the-table-into-multiple-tables-by-using-stored-procedure-closed","status":"publish","type":"post","link":"https:\/\/jassweb.com\/solved\/solved-i-am-inserting-excel-sheet-bulk-data-into-a-sql-database-table-now-i-need-to-split-the-table-into-multiple-tables-by-using-stored-procedure-closed\/","title":{"rendered":"[Solved] I am inserting excel sheet bulk data into a sql database table, now i need to split the table into multiple tables by using stored procedure [closed]"},"content":{"rendered":"<p> [ad_1]<br \/>\n<\/p>\n<div id=\"answer-35037509\" class=\"answer js-answer accepted-answer js-accepted-answer\" data-answerid=\"35037509\" data-parentid=\"35036847\" data-score=\"0\" data-position-on-page=\"1\" data-highest-scored=\"1\" data-question-has-accepted-highest-score=\"1\" itemprop=\"acceptedAnswer\" itemscope itemtype=\"https:\/\/schema.org\/Answer\">\n<div class=\"post-layout\">\n<div class=\"votecell post-layout--left\"><\/div>\n<div class=\"answercell post-layout--right\">\n<div class=\"s-prose js-post-body\" itemprop=\"text\">\n<p>I assume that you want to dumb the data from bulk_data to myaccount table, business_setup table and business_info table.<\/p>\n<p>if so,<\/p>\n<pre><code>Assumptions :\n- Column names with prefix myaccount_ belongs to myaccount table\n- Column names with prefix business_setup belongs to business_setup table\n- Column names with prefix business_info belongs to business_info table\n- complete data from  [bulk_data] needs to be dump in to above tables \n\n\nLimitations:\n- please don't forget to include not-null columns of tables in select list \n- handle foreign key columns (if exists) by yourself\n\n-- EXEC Data_Migration\n    CREATE PROCEDURE Data_Migration\nAS\nBEGIN\n    \/* before you execute this, make sure to include all not null column names in select list *\/\n    INSERT INTO myaccount ([myaccount_firstname] ,\n        [myaccount_lastname] ,\n        [myaccount_email] ,\n        [myaccount_mobile_no] ,\n        [myaccount_workphone] ,\n        [myaccount_street_1] ,\n        [myaccount_street_2] ,\n        [myaccount_city] ,\n        [myaccount_state] ,\n        [myaccount_zipcode] ,\n        [myaccount_country])\n    SELECT\n        [myaccount_firstname] ,\n        [myaccount_lastname] ,\n        [myaccount_email] ,\n        [myaccount_mobile_no] ,\n        [myaccount_workphone] ,\n        [myaccount_street_1] ,\n        [myaccount_street_2] ,\n        [myaccount_city] ,\n        [myaccount_state] ,\n        [myaccount_zipcode] ,\n        [myaccount_country]\n    FROM [bulk_data]\n\n\n    \/*  before you execute this, make sure to include all not null column names in select list      *\/\n    INSERT INTO business_setup ([business_setup_business_name] ,\n        [business_setup_fein_reg_id] ,\n        [business_setup_duns] ,\n        [business_setup_street_1] ,\n        [business_setup_street_2] ,\n        [business_setup_city] ,\n        [business_setup_state] ,\n        [business_setup_zipcode] ,\n        [business_setup_country] ,\n        [business_setup_businessphone] ,\n        [business_setup_businessfax] ,\n        [business_setup_emailid] ,\n        [business_setup_website] ,\n        [business_setup_primary_firstname] ,\n        [business_setup_primary_lastname] ,\n        [business_setup_primary_email] ,\n        [business_setup_primary_mobile] ,\n        [business_setup_primary_workphone] ,\n        [business_setup_secondary_firstname] ,\n        [business_setup_secondary_lastname] ,\n        [business_setup_secondary_email] ,\n        [business_setup_secondary_mobile] ,\n        [business_setup_secondary_workphone] ,\n        [business_setup_pay_via] ,\n        [business_setup_paypal_id] ,)\n    SELECT\n        [business_setup_business_name] ,\n        [business_setup_fein_reg_id] ,\n        [business_setup_duns] ,\n        [business_setup_street_1] ,\n        [business_setup_street_2] ,\n        [business_setup_city] ,\n        [business_setup_state] ,\n        [business_setup_zipcode] ,\n        [business_setup_country] ,\n        [business_setup_businessphone] ,\n        [business_setup_businessfax] ,\n        [business_setup_emailid] ,\n        [business_setup_website] ,\n        [business_setup_primary_firstname] ,\n        [business_setup_primary_lastname] ,\n        [business_setup_primary_email] ,\n        [business_setup_primary_mobile] ,\n        [business_setup_primary_workphone] ,\n        [business_setup_secondary_firstname] ,\n        [business_setup_secondary_lastname] ,\n        [business_setup_secondary_email] ,\n        [business_setup_secondary_mobile] ,\n        [business_setup_secondary_workphone] ,\n        [business_setup_pay_via] ,\n        [business_setup_paypal_id] ,\n    FROM [bulk_data]\n\n    \/*\n        before you execute this, make sure to include all not null column names in select list \n        I assume [subscription_type] exists in business_info table\n    *\/\n    INSERT INTO business_info ([business_info_short_description] ,\n        [business_info_long_description] ,\n        [business_info_hours_Sunday] ,\n        [business_info_hours_Monday] ,\n        [business_info_hours_Tuesday] ,\n        [business_info_hours_wednesday] ,\n        [business_info_hours_Thursday] ,\n        [business_info_hours_Friday] ,\n        [business_info_hours_Saturday] ,\n        [business_info_starttime] ,\n        [business_info_endtime] ,\n        [business_info_webonly] ,\n        [business_info_telephoneonly] ,\n        [business_info_appointmentonly] ,\n        [business_info_speciality_Acupuncture] ,\n        [business_info_speciality_Chiropractor] ,\n        [business_info_speciality_Conventional] ,\n        [business_info_speciality_Dentist] ,\n        [business_info_speciality_ElderlyCare] ,\n        [business_info_speciality_EyeCare] ,\n        [business_info_speciality_General] ,\n        [business_info_speciality_HealthCoach] ,\n        [business_info_speciality_Homeopathy] ,\n        [business_info_speciality_LifeCoach] ,\n        [business_info_speciality_Meditation] ,\n        [business_info_speciality_MyofacialTherapy] ,\n        [business_info_speciality_Naturopathy] ,\n        [business_info_speciality_NutritionHealthyCooking] ,\n        [business_info_speciality_Pilates] ,\n        [business_info_speciality_WellnessCenter] ,\n        [business_info_speciality_Yoga] ,\n        [subscription_type])\n    SELECT\n        [business_info_short_description] ,\n        [business_info_long_description] ,\n        [business_info_hours_Sunday] ,\n        [business_info_hours_Monday] ,\n        [business_info_hours_Tuesday] ,\n        [business_info_hours_wednesday] ,\n        [business_info_hours_Thursday] ,\n        [business_info_hours_Friday] ,\n        [business_info_hours_Saturday] ,\n        [business_info_starttime] ,\n        [business_info_endtime] ,\n        [business_info_webonly] ,\n        [business_info_telephoneonly] ,\n        [business_info_appointmentonly] ,\n        [business_info_speciality_Acupuncture] ,\n        [business_info_speciality_Chiropractor] ,\n        [business_info_speciality_Conventional] ,\n        [business_info_speciality_Dentist] ,\n        [business_info_speciality_ElderlyCare] ,\n        [business_info_speciality_EyeCare] ,\n        [business_info_speciality_General] ,\n        [business_info_speciality_HealthCoach] ,\n        [business_info_speciality_Homeopathy] ,\n        [business_info_speciality_LifeCoach] ,\n        [business_info_speciality_Meditation] ,\n        [business_info_speciality_MyofacialTherapy] ,\n        [business_info_speciality_Naturopathy] ,\n        [business_info_speciality_NutritionHealthyCooking] ,\n        [business_info_speciality_Pilates] ,\n        [business_info_speciality_WellnessCenter] ,\n        [business_info_speciality_Yoga] ,\n        [subscription_type]\n    FROM [bulk_data]\nEND\n<\/code><\/pre>\n<\/p><\/div>\n<div class=\"mt24\"><\/div>\n<\/div>\n<p>            <span class=\"d-none\" itemprop=\"commentCount\"><\/span> <\/p><\/div>\n<\/div>\n<p>[ad_2]<\/p>\n<p>solved I am inserting excel sheet bulk data into a sql database table, now i need to split the table into multiple tables by using stored procedure [closed] <\/p>\n","protected":false},"excerpt":{"rendered":"<p>[ad_1] I assume that you want to dumb the data from bulk_data to myaccount table, business_setup table and business_info table. if so, Assumptions : &#8211; Column names with prefix myaccount_ belongs to myaccount table &#8211; Column names with prefix business_setup belongs to business_setup table &#8211; Column names with prefix business_info belongs to business_info table &#8211; &#8230; <a title=\"[Solved] I am inserting excel sheet bulk data into a sql database table, now i need to split the table into multiple tables by using stored procedure [closed]\" class=\"read-more\" href=\"https:\/\/jassweb.com\/solved\/solved-i-am-inserting-excel-sheet-bulk-data-into-a-sql-database-table-now-i-need-to-split-the-table-into-multiple-tables-by-using-stored-procedure-closed\/\" aria-label=\"More on [Solved] I am inserting excel sheet bulk data into a sql database table, now i need to split the table into multiple tables by using stored procedure [closed]\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[320],"tags":[341,500],"class_list":["post-5546","post","type-post","status-publish","format-standard","hentry","category-solved","tag-sql","tag-sql-server"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>[Solved] I am inserting excel sheet bulk data into a sql database table, now i need to split the table into multiple tables by using stored procedure [closed] - JassWeb<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/jassweb.com\/solved\/solved-i-am-inserting-excel-sheet-bulk-data-into-a-sql-database-table-now-i-need-to-split-the-table-into-multiple-tables-by-using-stored-procedure-closed\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"[Solved] I am inserting excel sheet bulk data into a sql database table, now i need to split the table into multiple tables by using stored procedure [closed] - JassWeb\" \/>\n<meta property=\"og:description\" content=\"[ad_1] I assume that you want to dumb the data from bulk_data to myaccount table, business_setup table and business_info table. if so, Assumptions : - Column names with prefix myaccount_ belongs to myaccount table - Column names with prefix business_setup belongs to business_setup table - Column names with prefix business_info belongs to business_info table - ... Read more\" \/>\n<meta property=\"og:url\" content=\"https:\/\/jassweb.com\/solved\/solved-i-am-inserting-excel-sheet-bulk-data-into-a-sql-database-table-now-i-need-to-split-the-table-into-multiple-tables-by-using-stored-procedure-closed\/\" \/>\n<meta property=\"og:site_name\" content=\"JassWeb\" \/>\n<meta property=\"article:published_time\" content=\"2022-08-29T05:03:43+00:00\" \/>\n<meta name=\"author\" content=\"Kirat\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Kirat\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-i-am-inserting-excel-sheet-bulk-data-into-a-sql-database-table-now-i-need-to-split-the-table-into-multiple-tables-by-using-stored-procedure-closed\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-i-am-inserting-excel-sheet-bulk-data-into-a-sql-database-table-now-i-need-to-split-the-table-into-multiple-tables-by-using-stored-procedure-closed\/\"},\"author\":{\"name\":\"Kirat\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31\"},\"headline\":\"[Solved] I am inserting excel sheet bulk data into a sql database table, now i need to split the table into multiple tables by using stored procedure [closed]\",\"datePublished\":\"2022-08-29T05:03:43+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-i-am-inserting-excel-sheet-bulk-data-into-a-sql-database-table-now-i-need-to-split-the-table-into-multiple-tables-by-using-stored-procedure-closed\/\"},\"wordCount\":82,\"publisher\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\"},\"keywords\":[\"sql\",\"sql-server\"],\"articleSection\":[\"Solved\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-i-am-inserting-excel-sheet-bulk-data-into-a-sql-database-table-now-i-need-to-split-the-table-into-multiple-tables-by-using-stored-procedure-closed\/\",\"url\":\"https:\/\/jassweb.com\/solved\/solved-i-am-inserting-excel-sheet-bulk-data-into-a-sql-database-table-now-i-need-to-split-the-table-into-multiple-tables-by-using-stored-procedure-closed\/\",\"name\":\"[Solved] I am inserting excel sheet bulk data into a sql database table, now i need to split the table into multiple tables by using stored procedure [closed] - JassWeb\",\"isPartOf\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#website\"},\"datePublished\":\"2022-08-29T05:03:43+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-i-am-inserting-excel-sheet-bulk-data-into-a-sql-database-table-now-i-need-to-split-the-table-into-multiple-tables-by-using-stored-procedure-closed\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/jassweb.com\/solved\/solved-i-am-inserting-excel-sheet-bulk-data-into-a-sql-database-table-now-i-need-to-split-the-table-into-multiple-tables-by-using-stored-procedure-closed\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-i-am-inserting-excel-sheet-bulk-data-into-a-sql-database-table-now-i-need-to-split-the-table-into-multiple-tables-by-using-stored-procedure-closed\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/jassweb.com\/solved\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"[Solved] I am inserting excel sheet bulk data into a sql database table, now i need to split the table into multiple tables by using stored procedure [closed]\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/jassweb.com\/solved\/#website\",\"url\":\"https:\/\/jassweb.com\/solved\/\",\"name\":\"JassWeb\",\"description\":\"Build High-quality Websites\",\"publisher\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/jassweb.com\/solved\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\",\"name\":\"Jass Web\",\"url\":\"https:\/\/jassweb.com\/solved\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png\",\"contentUrl\":\"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png\",\"width\":693,\"height\":132,\"caption\":\"Jass Web\"},\"image\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31\",\"name\":\"Kirat\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1776403586\",\"contentUrl\":\"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1776403586\",\"caption\":\"Kirat\"},\"sameAs\":[\"http:\/\/jassweb.com\"],\"url\":\"https:\/\/jassweb.com\/solved\/author\/jaspritsinghghumangmail-com\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"[Solved] I am inserting excel sheet bulk data into a sql database table, now i need to split the table into multiple tables by using stored procedure [closed] - JassWeb","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/jassweb.com\/solved\/solved-i-am-inserting-excel-sheet-bulk-data-into-a-sql-database-table-now-i-need-to-split-the-table-into-multiple-tables-by-using-stored-procedure-closed\/","og_locale":"en_US","og_type":"article","og_title":"[Solved] I am inserting excel sheet bulk data into a sql database table, now i need to split the table into multiple tables by using stored procedure [closed] - JassWeb","og_description":"[ad_1] I assume that you want to dumb the data from bulk_data to myaccount table, business_setup table and business_info table. if so, Assumptions : - Column names with prefix myaccount_ belongs to myaccount table - Column names with prefix business_setup belongs to business_setup table - Column names with prefix business_info belongs to business_info table - ... Read more","og_url":"https:\/\/jassweb.com\/solved\/solved-i-am-inserting-excel-sheet-bulk-data-into-a-sql-database-table-now-i-need-to-split-the-table-into-multiple-tables-by-using-stored-procedure-closed\/","og_site_name":"JassWeb","article_published_time":"2022-08-29T05:03:43+00:00","author":"Kirat","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Kirat","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/jassweb.com\/solved\/solved-i-am-inserting-excel-sheet-bulk-data-into-a-sql-database-table-now-i-need-to-split-the-table-into-multiple-tables-by-using-stored-procedure-closed\/#article","isPartOf":{"@id":"https:\/\/jassweb.com\/solved\/solved-i-am-inserting-excel-sheet-bulk-data-into-a-sql-database-table-now-i-need-to-split-the-table-into-multiple-tables-by-using-stored-procedure-closed\/"},"author":{"name":"Kirat","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31"},"headline":"[Solved] I am inserting excel sheet bulk data into a sql database table, now i need to split the table into multiple tables by using stored procedure [closed]","datePublished":"2022-08-29T05:03:43+00:00","mainEntityOfPage":{"@id":"https:\/\/jassweb.com\/solved\/solved-i-am-inserting-excel-sheet-bulk-data-into-a-sql-database-table-now-i-need-to-split-the-table-into-multiple-tables-by-using-stored-procedure-closed\/"},"wordCount":82,"publisher":{"@id":"https:\/\/jassweb.com\/solved\/#organization"},"keywords":["sql","sql-server"],"articleSection":["Solved"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/jassweb.com\/solved\/solved-i-am-inserting-excel-sheet-bulk-data-into-a-sql-database-table-now-i-need-to-split-the-table-into-multiple-tables-by-using-stored-procedure-closed\/","url":"https:\/\/jassweb.com\/solved\/solved-i-am-inserting-excel-sheet-bulk-data-into-a-sql-database-table-now-i-need-to-split-the-table-into-multiple-tables-by-using-stored-procedure-closed\/","name":"[Solved] I am inserting excel sheet bulk data into a sql database table, now i need to split the table into multiple tables by using stored procedure [closed] - JassWeb","isPartOf":{"@id":"https:\/\/jassweb.com\/solved\/#website"},"datePublished":"2022-08-29T05:03:43+00:00","breadcrumb":{"@id":"https:\/\/jassweb.com\/solved\/solved-i-am-inserting-excel-sheet-bulk-data-into-a-sql-database-table-now-i-need-to-split-the-table-into-multiple-tables-by-using-stored-procedure-closed\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/jassweb.com\/solved\/solved-i-am-inserting-excel-sheet-bulk-data-into-a-sql-database-table-now-i-need-to-split-the-table-into-multiple-tables-by-using-stored-procedure-closed\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/jassweb.com\/solved\/solved-i-am-inserting-excel-sheet-bulk-data-into-a-sql-database-table-now-i-need-to-split-the-table-into-multiple-tables-by-using-stored-procedure-closed\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/jassweb.com\/solved\/"},{"@type":"ListItem","position":2,"name":"[Solved] I am inserting excel sheet bulk data into a sql database table, now i need to split the table into multiple tables by using stored procedure [closed]"}]},{"@type":"WebSite","@id":"https:\/\/jassweb.com\/solved\/#website","url":"https:\/\/jassweb.com\/solved\/","name":"JassWeb","description":"Build High-quality Websites","publisher":{"@id":"https:\/\/jassweb.com\/solved\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/jassweb.com\/solved\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/jassweb.com\/solved\/#organization","name":"Jass Web","url":"https:\/\/jassweb.com\/solved\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/","url":"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png","contentUrl":"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png","width":693,"height":132,"caption":"Jass Web"},"image":{"@id":"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31","name":"Kirat","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/image\/","url":"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1776403586","contentUrl":"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1776403586","caption":"Kirat"},"sameAs":["http:\/\/jassweb.com"],"url":"https:\/\/jassweb.com\/solved\/author\/jaspritsinghghumangmail-com\/"}]}},"_links":{"self":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts\/5546","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/comments?post=5546"}],"version-history":[{"count":0,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts\/5546\/revisions"}],"wp:attachment":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/media?parent=5546"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/categories?post=5546"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/tags?post=5546"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}