Select specific row from mysql table based on a column value

Sireini

How do I select an specific row from mysql table?

This is my table: enter image description here

I want to select on a specific Token value, so what I tried is this:

SELECT * FROM Oefeningen WHERE Token = ('a6rqc')

But that returns me nothing, could somebody help me out on this?

Henry

You may have a trailing or leading space. I.e. the value might actually be token=' a6rqc' or it might be token='a6rqc '. If you use %, you will be able to wildcard match, i.e. token like '%a6rqc%'

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

Select an information from a row based on the maximum value of specific column in a group by?

mysql: select * from table but with unique value in specific column

Mysql query to select row based on column value

Pandas - Select row value from specific column based on value from other columns

Select a specific row with additional column that its value is from another column in one table

Mysql select dynamic row values as column name from a table and value from another table

for Loop for multiplying a value of each row with a specific column from another table based on condition in Python

Select specific rows based on previous row value (in the same column)

Select data frame value based on specific row and column in R

Select records from a table based on column value from same table

Get specific value from table with table name, row and column index

Select column based on the row value

How to select the row value based on preference order in the table using MySql

Mysql Query - Get row value based on column name in a different table

How can I select a column from my table, and get very nth row based on the value in that column in SQL Server?

SQL Select value from other table based on column value as treshold

Select multiple columns from row based on MAX value of a column

How to get a specific column value from current row in mysql?

Get specific value based on column & row name from dynamic Web table in which columns & rows position also dynamic

Select specific row but based on another column role

SQL SELECT Data from other table based on column value

How to SELECT in SQL based on a value from the same table column?

Select many intervals from a single table based on column value

mysql delete row based on value from another table

Select value based on value of another row in mysql

Returning a specific value from a column based on the value of another column in the same row in Python Pandas Dataframe

Posgresql Select row with lowest value for specific column

How to select a value from a column which is based on other row and column value?

select a row based on the highest value of a column python