anybody ever tried to do:
INSERT INTO mytable (column1) VALUES ('\');
that doesn't seem to work but
INSERT INTO mytable (column1) VALUES ('\\'); works...
why is that???
I have another question :)
It's about dynamic query...
Is it possible to use a dynamic query in pl/pgsql function to update a variable?
I am trying to do something like the following:
create function myfunction(varchar) returns int4 as '
declare
v_table_name alias for $1;
v_num int4...
Is returns "set" the same as returning a table???
by that I mean, if I have a function that returns "set"
can I do the following?
create function myfunction() returns "set" as '
begin
return [some SELECT statement here];
end;' language 'plpgsql';
if so, can...
Hi people, I am doing database migration from MS SQL Server to PostgreSQL. I need to know whether parameters can have default values?
In ms sql server, you can assign default values to your parameters. This feature allows you to call the stored procedure without giving parameters that have...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.