How to get a list of child pages of the current page in the WordPress.Only you have to call to wordpress wp_list_pages core function to get child pages.No display errors and no need to write sql statements.
$currentPageID = $post->ID; //current page ID $children = wp_list_pages('title_li=&child_of='.$currentPageID.'&echo=0');
Note:
Get parent page ID
$post->post_parent;
Get Current page ID
$post->ID;