Expand my Community achievements bar.

We are excited to introduce our latest innovation to enhance the Adobe Campaign user experience — the Adobe Campaign v8 Web User Interface!
SOLVED

"R.O" in SQL

Avatar

Level 3

Can any one explain what the "R.O" mean when we generate a SQL expression:

ro.png

...and does Adobe Campaign generate the "R.O" be default in every SQL interpretation.

Thank you.

1 Accepted Solution

Avatar

Correct answer by
Employee

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 .

SQL Aliases

View solution in original post

3 Replies

Avatar

Level 3

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.

Avatar

Level 3

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?

Avatar

Correct answer by
Employee

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 .

SQL Aliases