この会話は、活動がないためロックされています。新しい投稿を作成してください。
この会話は、活動がないためロックされています。新しい投稿を作成してください。
Can any one explain what the "R.O" mean when we generate a SQL expression:
...and does Adobe Campaign generate the "R.O" be default in every SQL interpretation.
Thank you.
解決済! 解決策の投稿を見る。
As mentioned above "R0" is the alias which is generated automatically. As query is done here for Recipient table(NmsRecipient R0) so it "R0". if you query from Delivery table (NmsDelivery D0) it is "D0" and for broad log it is (NmsBroadLogRcp) "B0".
Yes it is is best practice to use alias and most of RDBMS recommends this.
You can find several articles on internet to know the benefits of using alias's .
表示
返信
いいね!の合計
It is the alias. You see "FROM NmsRecipient R0" in the second line. The system is creating an alias for the table, NmsRecipient. It is a best practice to alias data sources but also helps to clarify a field name that may exist in multiple data sources being queried. It is the same as saying NmsRecipient.FirstName, NmsRecipient.LastName, etc...
I do believe that ACM will always alias tables. it would not always be R0. Especially when there are more than 1 table involved.
Thank you so much for the reply. In addition, what does "RO" stand for?
And is it best practice of RDMS to use "RO" as an alias?
表示
返信
いいね!の合計
As mentioned above "R0" is the alias which is generated automatically. As query is done here for Recipient table(NmsRecipient R0) so it "R0". if you query from Delivery table (NmsDelivery D0) it is "D0" and for broad log it is (NmsBroadLogRcp) "B0".
Yes it is is best practice to use alias and most of RDBMS recommends this.
You can find several articles on internet to know the benefits of using alias's .
表示
返信
いいね!の合計