초기화2 Go - 배열 초기화 및 사용 방법 1. Array 초기화 var x [10]int // 제로값으로 초기화 fmt.Println("x의 값은?", x)x의 값은? [0 0 0 0 0 0 0 0 0 0]2. 리터럴을 사용한 초기화 var fruits = [3]string{"apple", "banana", "kiwi"} // 배열 리터럴 사용 fmt.Println("fruits의 값은?", fruits) fruits의 값은? [apple banana kiwi]3. 비교 var x1 = [3]int{1, 2, 3} var x2 = [...]int{1, 2, 3} fmt.Println(x1 == x2) // true4. 배열 크기 확인 fmt.Println(len(x1)) // 35. 값 할당 위 x1 array 변수에 값을 할당한다. x1[0].. 2022. 9. 28. MySql - AUTO_INCREMENT 초기화 방법과 유의사항 MySql8.x AUTO_INCREMENT 초기화 방법 ALTER TABLE table_name AUTO_INCREMENT =1; 위의 방법으로 AUTO_INCREMENT 값을 변경할 수 있으나, 데이터가 없는 경우에만 가능하다. Note that you cannot reset the counter to a value less than or equal to any that have already been used. For MyISAM, if the value is less than or equal to the maximum value currently in the AUTO_INCREMENT column, the value is reset to the current maximum plus one. For .. 2022. 9. 2. 이전 1 다음