- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-12-2021 10:22 PM
How to join multiple tables in ServiceNow?
<Sample SQL>
SELECT
TABLE_1.AAA,
TABLE_1.BBB,
TABLE_2.CCC
FROM FROM
TABLE_1 INNER JOIN
TABLE_2 ON
TABLE_1.DDD = TABLE_2.DDD
WHERE
TABLE_1.EEE IS NULL
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-12-2021 10:25 PM
You can use database view. Refer the below URL for more details:
https://docs.servicenow.com/bundle/paris-platform-administration/page/use/reporting/concept/c_DatabaseViews.html
Thank you,
Palani
Palani
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-12-2021 10:25 PM
You can use database view. Refer the below URL for more details:
https://docs.servicenow.com/bundle/paris-platform-administration/page/use/reporting/concept/c_DatabaseViews.html
Thank you,
Palani
Palani
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-12-2021 10:29 PM
Thank you
By the way, is it possible to combine VIEW and VIEW?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-12-2021 10:39 PM
You can join database views. You need to add all the tables in both view to join them.
Please close the thread if my answer satisfies your question.
Thank you,
Palani
Palani
