skip to Main Content

how to remove one of the duplicate records? – Mysql

Having the following table mysql> desc customer; +------------------+--------------+------+-----+---------+-------+ | Field | Type | Null | Key | Default | Extra | +------------------+--------------+------+-----+---------+-------+ | id | char(36) | NO | PRI | NULL | | | firstname | varchar(255) | YES…

VIEW QUESTION

Mysql Query Result with N/A

Currenty I have records like below : name|score| tony|23| john|32| eddy|25| mark|21| nick|26| alex|27| nick|23| I want to request table with only name like : tony, john, eddy, mike, paul using this query below ; SELECT name, name FROM a_team…

VIEW QUESTION

MySQl Query based on filter value

I am having a form which contains some field(language,Datefrom,Dateto,Status).There is a submit button.I want to fetch the data based on the value filled on these field.My query to ignore the field which is not filled.How can i write the query.…

VIEW QUESTION
Back To Top
Search