© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
SupabaseS
Supabase•4y ago
Ansh Rathod

getting null value while selecting data from the table

hii, i crated my own table auth table (Users) in public schema but i created this table using SQL editor, when i try to select data from the table im getting null response.

 const { data } = await supabase
      .from("Users")
      .select("username,hashpass")
      .match({ username: req.body.username });
here data is null.
 const { data } = await supabase
      .from("Users")
      .select("username,hashpass")
      .match({ username: req.body.username });
here data is null.

and when i create the table with from supabase ui it works fine!

found something similar issue on github but didn't understand it properly.
https://github.com/supabase/supabase/discussions/5432
GitHub
Database reads continually returning null or undefined · Discussion...
Hello, I just started using Supabase and have been following a few of the templates. However, I can't seem to get anything back from my tables. It looks like the connections are fine but th...
Database reads continually returning null or undefined · Discussion...
Supabase banner
SupabaseJoin
Supabase gives you the tools, documentation, and community that makes managing databases, authentication, and backend infrastructure a lot less overwhelming.
45,816Members
Resources

Similar Threads

Was this page helpful?
Recent Announcements

Similar Threads

Getting profile data from another table
SupabaseSSupabase / help-and-questions
4y ago
Not getting any data from my table
SupabaseSSupabase / help-and-questions
4y ago
getting 401 unauthorised error while inserting data in supabase table.
SupabaseSSupabase / help-and-questions
3y ago
Returning null after data inserted into table
SupabaseSSupabase / help-and-questions
4y ago