Skip to content

Tag: mysql

Filtering empty rows from Mysql SELECT query issue

I have a SELECT query as below: This query gives me an output like this: My question is, how to filter the 0 due records from due_balance and modify the query to get the rest? Expecting result should be: I tried it in this way, but it doesn’t work for me. Answer Use HAVING Clause or use subquery then ad…

Join Only Unique Values From 2 Tables

I’m trying to join two MySQL tables, and return only the unique values between them. eg. I want to get as my result a table that only shows the intersections of rows without any duplicates where I’m joining on table1.column1 = table2.column1: Simple joins and unions and I’m ok, but this one …

SQL Query to check not repeated values

I’m new to SQL. I wanted to know, How to check the entries which are not repeated for the other entries. Better I give one example. column1 column2 a 1 a 2 a 3 a 4 b 1 b 2 b 3 b 4 c 1 c 2 c 3 I want output as column1 column2 c 4 because c

Get movies that have categories

I have associative table movies and their categories. How can i get movies that have category 1 and 2? Result: Answer Do GROUP BY. Use HAVING with COUNT DISTINCT to make sure both 1 and 2 are there. Just for fun, you can also do a self join: Or, use INTERSECT:

SQL to append records

I have two tables tbl1 and tbl2. Consider tbl2 as the main set and tbl1 has been derived from other sources but will essentially now be a subset of tbl2. tbl1 cd productcd type 1 1 A 1 2 AB 1 3 A 2 3 AB 2 4 AC 3 1 A tbl2 cd productcd type priority 1 1 A

casting date within a to_char function?

How can I cast a date or timestamp column to date within a to_char function? But I need to cast the date_column to date first but am unsure Thanks Answer TO_CHAR, as you are using it above, appears to be Oracle code. MySQL uses the DATE_FORMAT function: