반응형
Dim insert_coupon_query As String = ("INSERT INTO qa_discountcoupons (id, status_code) VALUES (AUTO_INCREMENT_ID, 5)")
Dim cmd_query As New MySqlCommand(insert_coupon_query, objConn)
Dim cmd_result As Integer = CInt(cmd_query.ExecuteScalar())
현재 삽입의 AUTO_INCREMENT 값을 반환하고 msgbox에 표시하고 싶습니다.
해결 방법
Dim insert_coupon_query As String = ("INSERT INTO qa_discountcoupons (status_code) VALUES (5); SELECT LAST_INSERT_ID()")
Dim cmd_query As New MySqlCommand(insert_coupon_query, objConn)
Dim cmd_result As Integer = CInt(cmd_query.ExecuteScalar())
MsgBox(cmd_result)
참조 페이지 https://stackoverflow.com/questions/9791156
반응형
'MySql' 카테고리의 다른 글
MySQL java.math.BigInteger는 java.lang.Integer로 캐스트 될 수 없습니다. (0) | 2020.09.19 |
---|---|
MySQL mysql select ONLY duplicate records from database (0) | 2020.09.19 |
MySQL Change date format in php retrieved from mysql (0) | 2020.09.18 |
MySQL 단일 쿼리에서 합계 및 합계로 그룹 가져 오기 (0) | 2020.09.18 |
MySQL MYSQL - Update using while loop (0) | 2020.09.18 |
댓글