I use database.table_name only in Postgre SQL everytime i want to select a data from a table which is slightly annoying. Is there anyway to no use that and still run by queries without error
For ex in postgre SQL:
SELECT *
FROM database.table_name
whereas in mysql:
SELECT *
FROM table_name
Haven't tried any different approach