# หาบั๊กให้เจอ: React Native > โค้ดหนึ่งชิ้น หาบั๊กให้เจอ หรือพิสูจน์ว่าไม่มีบั๊ก ชาเลนจ์ประจำวัน: 2026-08-19 (UTC) · Mid-Level ```tsx import * as SQLite from 'expo-sqlite' const db = SQLite.openDatabaseSync('blog.db') type Post = { id: number; title: string; author_id: number } export async function loadPostsWithAuthors() { const posts = await db.getAllAsync('SELECT id, title, author_id FROM posts') const enriched = [] for (const post of posts) { const author = await db.getFirstAsync( 'SELECT name FROM users WHERE id = ?', post.author_id ) enriched.push({ ...post, author }) } return enriched } ``` ## คำตัดสินของคุณ - ช่องโหว่ความปลอดภัย - บั๊กเชิงตรรกะ - สไตล์โค้ด - ไม่มีปัญหา วันละหนึ่งครั้ง คำตอบจะแสดงทันทีหลังจากนั้น --- Source: SharpSkill (https://sharpskill.dev), tech interview preparation for your real stack. HTML version of this page: https://sharpskill.dev/th/daily/react-native