Created
February 9, 2026 11:44
-
-
Save cristiroma/b59f1a73dfead635fec708dc26be4585 to your computer and use it in GitHub Desktop.
Drupal extract node URLs using SQL Query
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| SELECT CONCAT('https://example.org', b.alias) AS url FROM node a INNER JOIN path_alias b ON CONCAT('/node/', a.nid) = b.path GROUP BY url; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment