- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-14-2018 07:50 AM
What is the difference between addOrderBy and OrderBy glide record method.
Solved! Go to Solution.
- Labels:
-
Scripting and Coding
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-17-2018 02:49 AM
Hi Jyoti,
addOrderBy(String column)
Adds a column to order by in the query.
Eg:
var gr = new GlideRecord('incident');
gr.addOrderBy('number'); -->Here, number column of incident will be placed in order.
gr.query();
orderBy(String column)
Specifies an orderBy column.
Eg:
var gr = new GlideRecord('incident');
gr.orderBy('number');
gr.orderBy('sys_created_on'); -->Here, you can add multiple columns
gr.query();
Difference : "OrderBy" May be called more than once to order by multiple columns.
Thanks,
Sujata Vishwakarma
Please mark if this is helpful.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-14-2018 01:19 PM
addOrderBy - Adds a column to order by in the query.
orderBy - Specifies an orderBy column and may be called more than once to order by multiple columns.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-17-2018 01:41 AM
Viktor,
Could you please elaborate this with the help of example.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-17-2018 02:49 AM
Hi Jyoti,
addOrderBy(String column)
Adds a column to order by in the query.
Eg:
var gr = new GlideRecord('incident');
gr.addOrderBy('number'); -->Here, number column of incident will be placed in order.
gr.query();
orderBy(String column)
Specifies an orderBy column.
Eg:
var gr = new GlideRecord('incident');
gr.orderBy('number');
gr.orderBy('sys_created_on'); -->Here, you can add multiple columns
gr.query();
Difference : "OrderBy" May be called more than once to order by multiple columns.
Thanks,
Sujata Vishwakarma
Please mark if this is helpful.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-17-2018 05:25 AM
Thanks Sujata