Burden Record is utilized to stack a specific record from the pattern. Burden record will stack the record with the assistance of Record ID. It is addressed with @rid image in the resultset.
The accompanying assertion is the fundamental sentence structure of the LOAD Record order.
LOAD RECORD <record-id>
Where <record-id> characterizes the record id of the record you need to stack.
In the event that you don't have a clue about the Record ID of a specific record, at that point you can execute any inquiry against the table. In the outcome set you will discover the Record ID (@rid) of the individual record.
Example
Allow us to consider a similar Customer table that we have utilized in past sections.
Sr.No.	Name	Age
1	Satish	25
2	Krishna	26
3	Kiran	29
4	Javeed	21
5	Raja	29
Attempt the accompanying inquiry to recover the record having Record ID @rid: #11:0.
orientdb {db = demo}> LOAD RECORD #11:0 
In the event that the above inquiry is executed effectively, you will get the accompanying yield.
+---------------------------------------------------------------------------+ 
| Document - @class: Customer        @rid: #11:0           @version: 1      | 
+---------------------------------------------------------------------------+ 
|                     Name | Value                                          | 
+---------------------------------------------------------------------------+ 
|                       id | 1                                              | 
|                     name | satish                                         | 
|                      age | 25                                             | 
+---------------------------------------------------------------------------+ 
 
   
    
 
  
  
  
  
  
 