I want to print the result by running a mssql query on any page in my postgresql project, how can I do it?
for exam.
SELECT TOP(11) * FROM dbo.UserObject WITH (NOLOCK) WHERE u_logon_name='cc@gmail.com'
My default db setting is postgresql but I want to run mssql query;
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql',
'NAME': 'postgres',
'ALIAS': 'XX',
'USER': 'XX',
'PASSWORD': 'XX',
'HOST': 'XX',
'PORT': 'XX',
}
}