select gid,goodsName,price,imgUrl from goods where gselect like '%"+key+"%' and state = '1' order by gid desc
时间: 2024-04-02 20:31:05 浏览: 60
select 的相关操作
这是一条SQL语句,用于从名为"goods"的数据库表中查询符合条件的记录。具体来说,它会查询表中的gid、goodsName、price和imgUrl四个字段,其中gselect字段中包含有变量key的字符串,并且state字段的值为1。结果按gid字段降序排列。这个SQL语句通常用于实现基于关键字搜索的商品查询功能,其中key变量代表用户输入的搜索关键字。
阅读全文