Skip to content

Is it right situation to do left outer join?

I have two datatset, A and B.(A is a big dataset like personal info and B is like a small summarized demographic statistic data) I want to append summary info to A data with demographic info. As one …

SSIS Conditional Split Reject files [closed]

I want to migrate the data to a target table. However, I want to make a reject file for null values ​​and values ​​whose size exceeds 20 characters. As I do with Conditional Splitting? I did that but …

SQL syntax with FOREIGN KEY

I have the following tables: CREATE TABLE IF NOT EXISTS {}.roles_permissions ( role_id INT (12) NOT NULL, permission_id INT (12) NOT NULL, UNIQUE KEY (role_id,permission_id) CONSTRAINT `fk-rprole` …