ITEM table. How do I select* in SQL developer to view detail?
ITEM table. How do I select* in SQL developer to view detail? I’m totally new to doing any query in Agile and just need to know how to start a query from an Agile table.
select * from item where item_number = ‘134433-14’;
select item_number, p2.* from page_two p2, item i where i.id = p2.id and i.item_number = ‘134433-14′;
There is a lot more but this gets you started.