Piorosen / sqldump-to-object

mariadb sql dump(.sql) file to In Memory Object on Go Language.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

using create to structure, insert to data

Piorosen opened this issue · comments

INSERT INTO `member` VALUES (10,'test','test','test','/src/assets/noProfile.png'),(11,'test1','test1','test1','/src/assets/noProfile.png'),(12,'test2','test2','test2','/src/assets/noProfile.png'),(13,'test3','test3','test3','/src/assets/noProfile.png'),(14,'test4','test4','test4','/src/assets/noProfile.png'),(15,'guddnr0421@naver.com','okk','752MBNTQFZ','/src/assets/noProfile.png');

vs

INSERT INTO `Login_log` (`id`, `user_id`, `ip`, `timestamp`) VALUES
	(1, 1, '127.0.0.1', '2023-11-17 18:53:42'),
	(2, 1, '127.0.0.1', '2023-11-18 06:28:54'),
	(3, 1, '127.0.0.1', '2023-11-18 06:39:01');

this is example and diff.