Skip to content

Tag: sql

to use module in sql ms-Access-2010

I have defined a procedure in my module, returning the path of the database and I want to use that path in my sql query. Procedure in module : I am using the function above in my sql query : It is giving me the error: “error in from clause” but when I am using it in vba code ,

Possible to load .SQL file to Power bi?

Just started exploring power bi and I came across a basic question that I find difficult to get a correct solution. Is it possible to load .sql file in power bi and create a report for it? thanks Answer It is not possible to load a .SQL file in a Power BI report, but you can specify a SQL query

How can I update the table in SQL?

I’ve created a table called Youtuber, the code is below: In this table, there are 2 channels: So, I want to edit the age of “Grandtour Games” to “18”. How can I do that with update? Is my code right? Answer No, in update, you’ll have to follow this sequence: In your code, p…

Wipe all tables in a schema – sequelize nodejs

To perform unit testing on a mysql database using sequelize as ORM, I need to refresh my database when each test start to run. Actually I wrote a solution like this: but every time I create tables I have to add another instruction. I would implement a single instruction to perform a complete wipe of the entir…