변환2 [java] String, int 형 변환 String -> int Integer.parseInt() 메소드를 사용하면 된다. String test_string = "123"; int test_int = Integer.parseInt(test_string); 반대로 int-> String Integer.toString() 메소드를 사용하면 된다. int test_int = 123; String test_string = Integer.toString(test_int); 개발 언어/자바 java 2020. 2. 18. [MSSQL] 10 => 16 진수 변환 / 16 => 10진수 변환 MSSQL에서 10진수를 16진수로 변환, 또는 16진수를 10진수로 변환하는 함수를 제공하지 않는 것 같다. 그래서 함수를 직접 만들어서 사용한다. 일단, 10진수를 16진수로 변환하는 함수다. 1. 10진수 => 16진수 변환 함수 CREATE function fn_dectohex(@dec bigint) returns nvarchar(50) as begin if @dec =0 begin return '0'; end declare @hex nvarchar(50) select @hex = ''; while (@dec > 0) begin declare @h nvarchar(1) declare @n int select @n = @dec % 16 if(@n = 10)begin select @h = 'a' en.. SQL/MS-SQL & SQL Server Management Studio 2020. 2. 11. 이전 1 다음