Mysql distinct in mysql and php
<?php
$sql="select distinct * from 'your table name ' ";
?>
or
<?php
$sql="select distinct * from 'your table name ' name LIKE 's%' ";
?>
<?php
$sql="select distinct * from 'your table name ' ";
?>
or
<?php
$sql="select distinct * from 'your table name ' name LIKE 's%' ";
?>
Comments
Post a Comment