What is the difference between a stored procedure and a view?
I am confused about a few points: What is the difference between a stored procedure and a view? When should I use stored … Read more
I am confused about a few points: What is the difference between a stored procedure and a view? When should I use stored … Read more
This question already has answers here: How to concatenate strings of a string field in a PostgreSQL ‘group by’ query? (14 answers) Closed … Read more
how can i query my sql server to only get the size of database? I used this : use “MY_DB” exec sp_spaceused I … Read more
Seems like Money type is discouraged as described here My application needs to store currency, which datatype shall I be using? Numeric, Money … Read more
I have a table create table us ( a number ); Now I have data like: a 1 2 3 4 null null … Read more
Closed. This question needs details or clarity. It is not currently accepting answers. Want to improve this question? Add details and clarify the … Read more
How do I run an update and select statements on the same queryset rather than having to do two queries: – one to … Read more
I have a user-defined table type. I want to check it’s existence before editing in a patch using OBJECT_ID(name, type) function. What type … Read more
I’m trying to restore my dump file, but it caused an error: psql:psit.sql:27485: invalid command \N Is there a solution? I searched, but … Read more
I have two string columns a and b in a table foo. select a, b from foo returns values a and b. However, … Read more