例如
query := INSERT INTO article( uuid, community_id, author_uuid, author, title, content ) VALUES (?,?,?,?,?,?)
请问这种一堆问号有更好的写法吗
最省力的做法是不写
例如
query := INSERT INTO article( uuid, community_id, author_uuid, author, title, content ) VALUES (?,?,?,?,?,?)
请问这种一堆问号有更好的写法吗
最省力的做法是不写