Loading jQuery library from WordPress admin

You can load jQuery library using wp_enqueue_script.

jQuery library is registered by default, and the handle is ‘jquery’.

for more info check: Handles and Their Script Paths Registered by WordPress and the list at the end of wp_enqueue_script

Note: it is jquery (not jQuery)

code:

 wp_enqueue_script( 'jquery');