Webmaster Forums - Website and SEO Help

Web Development and Design => Website Design and HTML => Topic started by: vidhyaa on June 27, 2016, 05:34:47 AM

Title: web design
Post by: vidhyaa on June 27, 2016, 05:34:47 AM
How to Show certain selected rows with the value "pcds"
Title: Re: web design
Post by: Latlon Technologies on June 28, 2016, 02:53:03 AM
mysql> SELECT * FROM tablename WHERE fieldname = "pcds";
Title: Re: web design
Post by: Latlon Technologies on June 28, 2016, 02:54:03 AM
mysql> SELECT * FROM tablename WHERE fieldname = "pcds";




http://www.latlontechnologies.com/
Title: Re: web design
Post by: janpaul on July 04, 2016, 08:21:32 AM
You can select rows with the value "pcds" by applying select query with where clause. like : select * from tablename where fieldname = "pcds";