Hi,
I want do make something like this:
select ta1.* from table1 ta1, table2 ta2 where ta1.field=ta2.field and ta1.field=12
I want to return values even if ta2.field is null!
In SQL Server its (*=):
select ta1.* from table1 ta1, table2 ta2 where ta1.field*=ta2.field and ta1.field=12
How can I do this in MySQL?
Thanks
Telmo Cardoso
I want do make something like this:
select ta1.* from table1 ta1, table2 ta2 where ta1.field=ta2.field and ta1.field=12
I want to return values even if ta2.field is null!
In SQL Server its (*=):
select ta1.* from table1 ta1, table2 ta2 where ta1.field*=ta2.field and ta1.field=12
How can I do this in MySQL?
Thanks
Telmo Cardoso