skip to Main Content

MySQL search column field string

I have a mysql column(name) with some text like this "firstname middlename surname lastname". How can i select that row with a query like SELECT name FROM client WHERE name like %firstname lastname% . The where clause comes from a…

VIEW QUESTION

Mysql TIME confusion

Created a table with some columns of type TIME(3) Loaded from a CSV file 0:07.763 0:07.783 0:07.276 0:07.484 0:07.127 Running select * from some_table yields the following: 00:00:07.763 00:00:07.783 00:00:07.276 00:00:07.484 00:00:07.127 My question is: How can I get this…

VIEW QUESTION

Storing big decimals in MySQL

how can I store large decimal values in MYSQL? I have tried to use the decimal(10,9) but the value ends up being transformed to: 99999999.99 Example: 2110624448.26533720 Expected save value: 2110624448.26533720 Thanks in advance

VIEW QUESTION
Back To Top
Search