I need 3 rows of a table that have certain id.
This is my current query that gets only one record
$query='SELECT precios.id_precio, precios.precio, precios.descarga, precios.carga FROM wifmaxco_web.precios WHERE precios.id_precio="1"';
$tabla=mysql_query($query);
But I need to make a query of several records based on the id 1, 8, 14, 20.
Is there a way to retrieve multiple rows with a single query?