Guest User

Untitled

a guest
May 24th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. |id - length|
  2.  
  3. |1- 0.5|
  4. |2- 0.6|
  5. |3- 0.7|
  6.  
  7. |id- diam- cap - id_length|
  8.  
  9. |1- 6- 0.0013 - 1|
  10.  
  11. |2- 7- 0.0019- 1|
  12.  
  13. |3- 6- 0.0025- 2|
  14.  
  15. |4- 6- 0.0032- 3|
  16.  
  17. String table = "tab1"; // динамическое имя первой таблицы
  18. String table2 = "tab2"; // имя второй таблицы
  19. String column1 = table2 + ".diam"; // динамическое название столбца в таблице
  20. String column2 = table2 + ".cap";
  21. Cursor cursor = rawQuery("SELECT " + column1 + " , " + column2 + " FROM " + table + " , " + table2 + " WHERE " + table + ".id = " + table2 + ".id_lenght", null);
Add Comment
Please, Sign In to add comment