xxxxxxxxxx
SELECT * FROM product_list LIMIT 1, 1;
// your_table_name should be replaced with the name of the table from which you want to retrieve the second row.
// LIMIT 1, 1 means to skip the first row and then select one row. This effectively retrieves the second row from the table.