In my ColdFusion codes I have a query something like this:
<cfquery name="nrid" datasource="ndata">
select *
from tabel1, table2
where table1.name = table2.name
and table1.lastname = talbe2.lastname
and table1.ID = #data1.ID#
</cfquery>
data1 is a query. Is someone has any idea how am I gonna pust that in SQL*plus format. Especially this part:
table1.ID = #data1.ID#
<cfquery name="nrid" datasource="ndata">
select *
from tabel1, table2
where table1.name = table2.name
and table1.lastname = talbe2.lastname
and table1.ID = #data1.ID#
</cfquery>
data1 is a query. Is someone has any idea how am I gonna pust that in SQL*plus format. Especially this part:
table1.ID = #data1.ID#