Hi, I have the follow select where it display like
that using oracle 11g:
M<->Note
1<->2
1<->3
1<->4
2<->8
2<->9
I want to display like that in a html table (M once):
M<->Note
1<->2
"<->3
"<->4
2<->8
"<->9
$sql = ("SELECT DISTINCT(t1.MIN) AS M, T2.NOTA FROM T1 RIGHT JOIN T2 ON T1.MIN=T2.MIN WHERE (T1.MIN=$list) ");
$stmt = oci_parse($conn, $sql);
oci_execute ($stmt);
while ($row = oci_fetch_assoc($stmt)) {
$M = $row['M'];
$NOTA = $row['NOTA'];
}