比如说有个商品表
id int
name varchar
现在我想点一个按钮 把 名称有相同 的数据列出来。请问怎么写????
比如说有个商品表
id int
name varchar
现在我想点一个按钮 把 名称有相同 的数据列出来。请问怎么写????
e_table是表名字
select * from e_table e1,e_table e2where e1.name=e2.name;
select * from 表名 where 列名='值'
没懂你的意思
select * from 表