php - How to alphabetical book title using query -
i want alphabetical a-z using query , code
$user_query=mysqli_query($dbcon,"select * book book_title regexp '^[^a-za-z]' ")or die(mysqli_error($dbcon));
but didn't worked.
you can use order alphabetical order-
select * `book` order book.book_title asc
Comments
Post a Comment