- Issue created by @kris77
- 🇮🇳India abhiyanshu_rawat
Since you want to export specific webforms,
Access your database with a tool like phpMyAdmin or a CLI, and run SQL queries to export the webform data.SELECT * INTO OUTFILE '/path/to/export/webform_812.sql' FROM webform WHERE nid = 812;
SELECT * INTO OUTFILE '/path/to/export/webform_813.sql' FROM webform WHERE nid = 813;
This will generate SQL files containing the webform data.
- 🇮🇹Italy kris77
Hi @abhiyanshu thanks for you reply and help.
I think I didn't explain well.
In my Drupal7 site I have 128 differente webform, each with its own components/elements. I have webform "TEST"(nid 812) with element1, element2, element3 and webform "TEST2"(nid 813) with own element(element3, element4, element5).
So, I want to migrate this only two webform from Drupal7 to Drupal9 or Drupal10 without submission, only webform with own components/elements.
Thank you so much.