উত্তর:
SELECT (
SELECT COUNT(*)
FROM tab1
) AS count1,
(
SELECT COUNT(*)
FROM tab2
) AS count2
FROM dual
FROM dual
।
অতিরিক্ত তথ্য হিসাবে, এসকিউএল সার্ভারে একই জিনিসটি সম্পাদন করার জন্য, আপনাকে কেবল ক্যোয়ারির "FROM দ্বৈত" অংশটি সরিয়ে ফেলতে হবে।
এটি কিছুটা আলাদা কারণ:
SELECT 'table_1' AS table_name, COUNT(*) FROM table_1
UNION
SELECT 'table_2' AS table_name, COUNT(*) FROM table_2
UNION
SELECT 'table_3' AS table_name, COUNT(*) FROM table_3
এটি উত্তর স্থানান্তরিত করে (এক কলামের পরিবর্তে টেবিলের জন্য এক সারি) দেয়, অন্যথায় আমি এটি অনেক আলাদা বলে মনে করি না। আমি মনে করি পারফরম্যান্স অনুযায়ী তাদের সমতুল্য হওয়া উচিত।
আমার অভিজ্ঞতা এসকিউএল সার্ভারের সাথে রয়েছে তবে আপনি এটি করতে পারেন:
select (select count(*) from table1) as count1,
(select count(*) from table2) as count2
এসকিউএল সার্ভারে আমি ফলাফল পেয়েছি আপনি পরে।
অন্যান্য সামান্য বিভিন্ন পদ্ধতি:
with t1_count as (select count(*) c1 from t1),
t2_count as (select count(*) c2 from t2)
select c1,
c2
from t1_count,
t2_count
/
select c1,
c2
from (select count(*) c1 from t1) t1_count,
(select count(*) c2 from t2) t2_count
/
আমি দেখতে পাচ্ছি না যে কোনও উত্তর উত্তর এনেছে bring
যদি আপনি উপ-প্রশ্নের পছন্দ না এবং প্রতিটি টেবিলের আপনি এটা করতে পারেন প্রাথমিক কী আছে:
select count(distinct tab1.id) as count_t1,
count(distinct tab2.id) as count_t2
from tab1, tab2
তবে পারফরম্যান্স অনুযায়ী আমি বিশ্বাস করি যে কাসনোইয়ের সমাধান আরও ভাল, এবং আমি এটি ব্যবহার করব।
শেয়ার করার জন্য আমার কাছ থেকে এখানে
বিকল্প 1 - বিভিন্ন টেবিল থেকে একই ডোমেন থেকে গণনা
select distinct(select count(*) from domain1.table1) "count1", (select count(*) from domain1.table2) "count2"
from domain1.table1, domain1.table2;
বিকল্প 2 - একই টেবিলের জন্য বিভিন্ন ডোমেন থেকে গণনা
select distinct(select count(*) from domain1.table1) "count1", (select count(*) from domain2.table1) "count2"
from domain1.table1, domain2.table1;
বিকল্প 3 - একই সারণির জন্য পৃথক ডোমেন থেকে গণনা সারি করার জন্য "ইউনিয়ন সমস্ত" দিয়ে
select 'domain 1'"domain", count(*)
from domain1.table1
union all
select 'domain 2', count(*)
from domain2.table1;
এসকিউএল উপভোগ করুন, আমি সবসময় করি :)
select
t1.Count_1,t2.Count_2
from
(SELECT count(1) as Count_1 FROM tab1) as t1,
(SELECT count(1) as Count_2 FROM tab2) as t2
select (select count(*) from tab1) count_1, (select count(*) from tab2) count_2 from dual;
কিছুটা সম্পূর্ণতার জন্য - এই কোয়েরি আপনাকে প্রদত্ত মালিকের জন্য সমস্ত টেবিলের একটি গণনা দেওয়ার জন্য একটি কোয়েরি তৈরি করবে।
select
DECODE(rownum, 1, '', ' UNION ALL ') ||
'SELECT ''' || table_name || ''' AS TABLE_NAME, COUNT(*) ' ||
' FROM ' || table_name as query_string
from all_tables
where owner = :owner;
আউটপুট যেমন কিছু
SELECT 'TAB1' AS TABLE_NAME, COUNT(*) FROM TAB1
UNION ALL SELECT 'TAB2' AS TABLE_NAME, COUNT(*) FROM TAB2
UNION ALL SELECT 'TAB3' AS TABLE_NAME, COUNT(*) FROM TAB3
UNION ALL SELECT 'TAB4' AS TABLE_NAME, COUNT(*) FROM TAB4
যার পরে আপনি আপনার গণনা পেতে চালাতে পারেন। প্রায়শই মাঝে মাঝে এটি কেবল একটি সহজ স্ক্রিপ্ট।
যদি টেবিলগুলি (বা কমপক্ষে একটি মূল কলাম) একই ধরণের হয় তবে কেবল ইউনিয়নটি প্রথমে তৈরি করুন এবং তারপরে গণনা করুন।
select count(*)
from (select tab1key as key from schema.tab1
union all
select tab2key as key from schema.tab2
)
অথবা আপনার স্টেটমেন্ট নিন এবং এটির চারপাশে আরও একটি যোগফল যোগ করুন।
select sum(amount) from
(
select count(*) amount from schema.tab1 union all select count(*) amount from schema.tab2
)
--============= FIRST WAY (Shows as Multiple Row) ===============
SELECT 'tblProducts' [TableName], COUNT(P.Id) [RowCount] FROM tblProducts P
UNION ALL
SELECT 'tblProductSales' [TableName], COUNT(S.Id) [RowCount] FROM tblProductSales S
--============== SECOND WAY (Shows in a Single Row) =============
SELECT
(SELECT COUNT(Id) FROM tblProducts) AS ProductCount,
(SELECT COUNT(Id) FROM tblProductSales) AS SalesCount
Declare @all int
SET @all = (select COUNT(*) from tab1) + (select count(*) from tab2)
Print @all
অথবা
SELECT (select COUNT(*) from tab1) + (select count(*) from tab2)
select @count = sum(data) from
(
select count(*) as data from #tempregion
union
select count(*) as data from #tempmetro
union
select count(*) as data from #tempcity
union
select count(*) as data from #tempzips
) a