Let's say i have 2 tables namely TBL_ONE and TBL_TWO.TBL_ONE has 1 column and 1 row that has the value 1.one_ValueRow1: 1TBL_TWO has 1 column and 1 row.two_ValueRow1: 1 - Highquery = SELECT * FROM TBL_ONE, TBL_TWO WHERE one_Value = two_Value;
what i want to know is how do u substring column name? coz i want to get the 1st chracter of TBL_TWO row1 which is 1 - Highiv tried query = SELECT * FROM TBL_ONE, TBL_TWO WHERE one_Value = two_Value.substring(0,1);
but it doesnt work.what is the code for substring?